Function tari_wallet_ffi::completed_transaction_is_outbound[][src]

#[no_mangle]pub unsafe extern "C" fn completed_transaction_is_outbound(
    tx: *mut TariCompletedTransaction,
    error_out: *mut c_int
) -> bool

This function checks to determine if a TariCompletedTransaction was originally a TariPendingOutboundTransaction

Arguments

tx - The TariCompletedTransaction error_out - Pointer to an int which will be modified to an error code should one occur, may not be null. Functions as an out parameter.

Returns

bool - Returns if the transaction was originally sent from the wallet

Safety

None