Function tari_wallet_ffi::pending_inbound_transaction_get_transaction_id[][src]

#[no_mangle]pub unsafe extern "C" fn pending_inbound_transaction_get_transaction_id(
    transaction: *mut TariPendingInboundTransaction,
    error_out: *mut c_int
) -> c_ulonglong

-------------------------------------------------------------------------------------------- ///

----------------------------------- InboundTransaction ------------------------------------- /// Gets the TransactionId of a TariPendingInboundTransaction

Arguments

transaction - The pointer to a TariPendingInboundTransaction 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

c_ulonglong - Returns the TransactonId, note that it will be zero if transaction is null

Safety

None