Automatically merged updates to draft EIP(s) 3102 (#3185)

Hi, I'm a bot! This change was automatically merged because:

 - It only modifies existing Draft or Last Call EIP(s)
 - The PR was approved or written by at least one author of each modified EIP
 - The build is passing
This commit is contained in:
Guillaume Ballet 2021-01-04 16:53:11 +00:00 committed by GitHub
parent 56c80ba5ee
commit c74e0af70c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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`