pub unsafe fn wallet_confirm_transaction(
    wallet: WalletPtr,
    fragment_id: *const u8
) -> Result
Expand description

Confirm the previously generated transaction identified by fragment_id

Safety

This function dereference raw pointers (wallet, fragment_id). Even though the function checks if the pointers are null. Mind not to put random values in or you may see unexpected behaviors. It’s also asummed that fragment_id is a pointer to FRAGMENT_ID_LENGTH bytes of contiguous data.