pub trait GetWalletTxDetails {
// Required method
fn get_wallet_tx_details(
&mut self,
txid: &u256,
tx_status: &mut WalletTxStatus,
order_form: &mut WalletOrderForm,
in_mempool: &mut bool,
num_blocks: &mut i32
) -> WalletTx;
}
Required Methods§
sourcefn get_wallet_tx_details(
&mut self,
txid: &u256,
tx_status: &mut WalletTxStatus,
order_form: &mut WalletOrderForm,
in_mempool: &mut bool,
num_blocks: &mut i32
) -> WalletTx
fn get_wallet_tx_details( &mut self, txid: &u256, tx_status: &mut WalletTxStatus, order_form: &mut WalletOrderForm, in_mempool: &mut bool, num_blocks: &mut i32 ) -> WalletTx
| Get transaction details. |