Created
June 13, 2018 04:31
-
-
Save suhanlee/9fe135b9f669b81af432d1d83ad65bc2 to your computer and use it in GitHub Desktop.
Eth accounts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Account struct { | |
Address common.Address | |
URL URL | |
} | |
const AddressLength = 20 | |
type Address [AddressLength]byte | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Account struct { | |
Nonce uint64 | |
Balance *big.Int | |
Root common.Hash | |
CodeHash []byte | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment