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!();

/**
  | Unserialize a given Key-Value pair
  | and load it into the wallet
  |
  */
pub fn read_key_value(
        pwallet:   *mut Wallet,
        ss_key:    &mut DataStream,
        ss_value:  &mut DataStream,
        str_type:  &mut String,
        str_err:   &mut String,
        filter_fn: Option<&KeyFilterFn>) -> bool {
    
    todo!();
        /*
        CWalletScanState dummy_wss;
        LOCK(pwallet->cs_wallet);
        return ReadKeyValue(pwallet, ssKey, ssValue, dummy_wss, strType, strErr, filter_fn);
        */
}