nimbus-eth1/src/account.nim

15 lines
354 B
Nim
Raw Normal View History

import
2018-02-07 16:16:04 +00:00
constants, errors, ttmath, rlp
type
Account* = ref object
nonce*: UInt256
balance*: UInt256
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: UInt256 = 0.u256, balance: UInt256 = 0.u256): Account =
Account(nonce: nonce, balance: balance)