bitcoinwallet-library 0.1.16-alpha.0

a wallet maintains a set of transactions and balances, and provides the ability to create new transactions
Documentation
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;
        */
}