From 8ae6f4eae68815c2b0a149823e99b4b946901ed4 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Mon, 22 Aug 2016 18:26:37 +0100 Subject: [PATCH] EVM-C: mark evm_hash160 big-endian --- include/evm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/evm.h b/include/evm.h index d6cec2c..e0d4cb1 100644 --- a/include/evm.h +++ b/include/evm.h @@ -39,7 +39,7 @@ struct evm_uint256 { uint64_t words[4]; }; -/// 160-bit hash suitable for keeping an Ethereum address. +/// Big-endian 160-bit hash suitable for keeping an Ethereum address. struct evm_hash160 { /// The 20 bytes of the hash. uint8_t bytes[20];