From aa58d04a5a5d3b10fa7ee23a67cd2a5c1009404d Mon Sep 17 00:00:00 2001 From: Guillaume Ballet Date: Mon, 4 Jan 2021 17:20:50 +0100 Subject: [PATCH] eip-3102: account balance is a u256 --- EIPS/eip-3102.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EIPS/eip-3102.md b/EIPS/eip-3102.md index 17d087ff0efdf0..2fd1b90397c271 100644 --- a/EIPS/eip-3102.md +++ b/EIPS/eip-3102.md @@ -71,7 +71,7 @@ Nodes with `empty_hash` as both children are called _leaf nodes_, and the remain Assuming an account `A ≡ (A_b, A_n, A_c, A_s)` at address `A_a`, the following elements can be found at the following addresses: - * The account balance `A_b` can be found at key `hash(A_a)[0..253] ++ 0b00` and is of type `uint32`; + * The account balance `A_b` can be found at key `hash(A_a)[0..253] ++ 0b00` and is of type `uint256`; * The account nonce `A_n` can be found at key `hash(A_a)[0..253] ++ 0b01` and is of type `uint64`; * The code `A_c` is an arbitrary-length byte sequence that can be found at key `hash(A_a)[0..253] ++ 0b10`; * The root of the storage trie `A_s` can be found at key `hash(A_a)[0..253] ++ 0b11`