Function tari_wallet_ffi::pending_inbound_transaction_get_source_public_key[][src]

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

Gets the source TariPublicKey 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

*mut TariPublicKey - Returns a pointer to the source TariPublicKey, note that it will be ptr::null_mut() if transaction is null

Safety

The public_key_destroy method must be called when finished with a TariPublicKey to prevent a memory leak