mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-02-02 15:24:01 +00:00
Account.nonce is now AccountNonce which is uint64 from UInt256
This commit is contained in:
parent
abef1f11ba
commit
dbc35fb198
@ -10,14 +10,13 @@ import
|
||||
|
||||
type
|
||||
Account* = object
|
||||
nonce*: UInt256
|
||||
nonce*: AccountNonce
|
||||
balance*: UInt256
|
||||
storageRoot*: Hash256
|
||||
codeHash*: Hash256
|
||||
|
||||
proc newAccount*(nonce: UInt256 = 0.u256, balance: UInt256 = 0.u256): Account =
|
||||
proc newAccount*(nonce: AccountNonce = 0, balance: UInt256 = 0.u256): Account =
|
||||
result.nonce = nonce
|
||||
result.balance = balance
|
||||
result.storageRoot = BLANK_ROOT_HASH
|
||||
result.codeHash = EMPTY_SHA3
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user