nimbus-eth1/src/account.nim

15 lines
330 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
#storageRoot*:
#codeHash*:
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)