diff --git a/src/types.rs b/src/types.rs index d8951756c..582afe8aa 100644 --- a/src/types.rs +++ b/src/types.rs @@ -22,7 +22,7 @@ use ethabi::param_type::Writer; pub type AccountId = String; pub type Balance = u128; pub type RawAddress = [u8; 20]; -pub type RawU256 = [u8; 32]; // Little-endian large integer type. +pub type RawU256 = [u8; 32]; // Big-endian large integer type. pub type RawH256 = [u8; 32]; // Unformatted binary data of fixed length. pub type EthAddress = [u8; 20]; pub type Gas = u64;