pub trait AddToWalletIfInvolvingMe {
// Required method
fn add_to_wallet_if_involving_me(
&mut self,
tx: &TransactionRef,
confirm: WalletTxConfirmation,
update: bool,
rescanning_old_block: bool
) -> bool;
}