Moved EthTime to constants, update more timestamps to EthTime
This commit is contained in:
parent
284a026e51
commit
a731f59bd3
|
@ -31,7 +31,7 @@ type
|
|||
nonce*: string
|
||||
mixHash*: string
|
||||
extraData*: string
|
||||
timestamp*: int
|
||||
timestamp*: EthTime
|
||||
stateRoot*: string
|
||||
|
||||
FundedAddress* = ref object
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
|
||||
import
|
||||
ttmath, math, strutils, tables, utils/padding, rlp
|
||||
ttmath, math, strutils, tables, utils/padding, rlp, times
|
||||
|
||||
# rlpFields UInt256, table
|
||||
|
||||
type
|
||||
TypeHint* {.pure.} = enum UInt256, Bytes, Any
|
||||
EthTime* = Time
|
||||
|
||||
#Bytes* = seq[byte]
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import ../constants, ttmath, strformat, times, ../validation
|
||||
|
||||
type
|
||||
EthTime = Time
|
||||
Header* = ref object
|
||||
timestamp*: EthTime
|
||||
difficulty*: UInt256
|
||||
|
|
|
@ -44,7 +44,7 @@ method blockhash*(vmState: BaseVMState): string =
|
|||
method coinbase*(vmState: BaseVMState): string =
|
||||
vmState.blockHeader.coinbase
|
||||
|
||||
method timestamp*(vmState: BaseVMState): int =
|
||||
method timestamp*(vmState: BaseVMState): EthTime =
|
||||
vmState.blockHeader.timestamp
|
||||
|
||||
method blockNumber*(vmState: BaseVMState): UInt256 =
|
||||
|
|
Loading…
Reference in New Issue