nimbus-eth1/src/account.nim

15 lines
350 B
Nim
Raw Normal View History

import
2018-02-07 16:16:04 +00:00
constants, errors, ttmath, rlp
type
Account* = ref object
nonce*: Int256
balance*: Int256
2018-02-13 17:18:08 +00:00
storageRoot*: string
codeHash*: string
2018-01-30 10:51:13 +00:00
rlpFields Account, nonce, balance
proc newAccount*(nonce: Int256 = 0.i256, balance: Int256 = 0.i256): Account =
Account(nonce: nonce, balance: balance)