Skip to content

ledger_last_hash

  • Write the 32 byte Hash to the write_ptr
int64_t ledger_last_hash (
uint32_t write_ptr,
uint32_t write_len
);
uint8_t hash[32];
int64_t bytes_written =
ledger_last_hash(hash, 32);
NameTypeDescription
write_ptruint32_tPointer to a buffer of a suitable size to store the output. Should be at least 32 bytes.
write_lenuint32_tLength of the output buffer.
TypeDescription
int64_t

The number of bytes written

If negative, an error:
OUT_OF_BOUNDS
- pointers/lengths specified outside of hook memory.