1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
crate::ix!();

pub trait WalletInitInterface:
HasWalletSupport
+ AddWalletOptions
+ ParameterInteraction
+ Construct
{ }

pub trait HasWalletSupport {

    /**
      | Is the wallet component enabled
      |
      */
    fn has_wallet_support(&self) -> bool;
}

pub trait AddWalletOptions {

    /**
      | Get wallet help string
      |
      */
    fn add_wallet_options(&self, argsman: &mut ArgsManager);
}

pub trait ParameterInteraction {

    /**
      | Check wallet parameter interaction
      |
      */
    fn parameter_interaction(&self) -> bool;
}

pub trait Construct {

    /**
      | Add wallets that should be opened to
      | list of chain clients.
      |
      */
    fn construct(&self, node: &mut NodeContext);
}

pub trait AttachChain {

    fn attach_chain<'a>(
        wallet:          &Arc<Wallet>,
        chain:           &'a mut dyn ChainInterface,
        rescan_required: bool,
        error:           &mut BilingualStr,
        warnings:        &mut Vec<BilingualStr>) -> bool;
}

pub trait Create {

    fn create(
        context:               &mut WalletContext,
        name:                  &String,
        database:              Box<WalletDatabase>,
        wallet_creation_flags: u64,
        error:                 &mut BilingualStr,
        warnings:              &mut Vec<BilingualStr>) -> Arc<Wallet>;
}