pub trait TryGetBalances {
// Required method
fn try_get_balances(
&mut self,
balances: &mut WalletBalances,
block_hash: &mut u256
) -> bool;
}
Required Methods§
sourcefn try_get_balances(
&mut self,
balances: &mut WalletBalances,
block_hash: &mut u256
) -> bool
fn try_get_balances( &mut self, balances: &mut WalletBalances, block_hash: &mut u256 ) -> bool
| Get balances if possible without blocking. |