Revert "Moved EthTime to constants, update more timestamps to EthTime"

This reverts commit a731f59bd3.
This commit is contained in:
Coffepots 2018-04-06 16:24:39 +01:00
parent a731f59bd3
commit fdcfe5ae2f
4 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ type
nonce*: string
mixHash*: string
extraData*: string
timestamp*: EthTime
timestamp*: int
stateRoot*: string
FundedAddress* = ref object

View File

@ -1,12 +1,11 @@
import
ttmath, math, strutils, tables, utils/padding, rlp, times
ttmath, math, strutils, tables, utils/padding, rlp
# rlpFields UInt256, table
type
TypeHint* {.pure.} = enum UInt256, Bytes, Any
EthTime* = Time
#Bytes* = seq[byte]

View File

@ -1,6 +1,7 @@
import ../constants, ttmath, strformat, times, ../validation
type
EthTime = Time
Header* = ref object
timestamp*: EthTime
difficulty*: UInt256

View File

@ -44,7 +44,7 @@ method blockhash*(vmState: BaseVMState): string =
method coinbase*(vmState: BaseVMState): string =
vmState.blockHeader.coinbase
method timestamp*(vmState: BaseVMState): EthTime =
method timestamp*(vmState: BaseVMState): int =
vmState.blockHeader.timestamp
method blockNumber*(vmState: BaseVMState): UInt256 =