pub trait ScanForWalletTransactions {
    // Required method
    fn scan_for_wallet_transactions(
        &mut self,
        start_block: &u256,
        start_height: i32,
        max_height: Option<i32>,
        reserver: &WalletRescanReserver,
        update: bool
    ) -> WalletScanResult;
}

Required Methods§

source

fn scan_for_wallet_transactions( &mut self, start_block: &u256, start_height: i32, max_height: Option<i32>, reserver: &WalletRescanReserver, update: bool ) -> WalletScanResult

Implementors§