pub fn hash_transaction(
header: &TransactionHeader,
read_slots: &[TransactionSlot],
write_slots: &[TransactionSlot],
payload: &[u128],
nonce: u64,
) -> Blake3Hash
Expand description
Create transaction hash used for signing with sign()
.
hash_and_sign()
helper function exists that combines this method with sign()
.