bitcoin-dumpwallet 0.1.16-alpha.0

persist wallet to and from disk
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
crate::ix!();

/**
  | The standard wallet deleter function blocks on
  | the validation interface queue, which doesn't
  | exist for the bitcoin-wallet. Define our own
  | deleter here.
  */
pub fn wallet_tool_release_wallet(wallet: &mut Wallet)  {
    
    todo!();
        /*
            wallet->WalletLogPrintf("Releasing wallet\n");
        wallet->Close();
        delete wallet;
        */
}