aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-08-25 21:49:36 +0800
committerFelix Lange <fjl@twurst.com>2015-08-25 21:49:36 +0800
commitabce09954b6901b446c004ee06b389c338922f28 (patch)
tree16ddada3b6ecbf26e53bb9eaf0c8b03812f7cab8 /cmd
parenta219159e7e18ccaa52c9c493a19a11e6b7bab3dd (diff)
parent7324176f702a77fc331bf16a968d2eb4bccce021 (diff)
downloaddexon-abce09954b6901b446c004ee06b389c338922f28.tar
dexon-abce09954b6901b446c004ee06b389c338922f28.tar.gz
dexon-abce09954b6901b446c004ee06b389c338922f28.tar.bz2
dexon-abce09954b6901b446c004ee06b389c338922f28.tar.lz
dexon-abce09954b6901b446c004ee06b389c338922f28.tar.xz
dexon-abce09954b6901b446c004ee06b389c338922f28.tar.zst
dexon-abce09954b6901b446c004ee06b389c338922f28.zip
Merge pull request #1711 from Gustav-Simonsson/timestamp_big_int
Add tests for uncle timestamps and refactor timestamp type
Diffstat (limited to 'cmd')
-rw-r--r--cmd/evm/main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/evm/main.go b/cmd/evm/main.go
index 6639069b9..243dd6266 100644
--- a/cmd/evm/main.go
+++ b/cmd/evm/main.go
@@ -166,7 +166,7 @@ type VMEnv struct {
depth int
Gas *big.Int
- time uint64
+ time *big.Int
logs []vm.StructLog
}
@@ -175,7 +175,7 @@ func NewEnv(state *state.StateDB, transactor common.Address, value *big.Int) *VM
state: state,
transactor: &transactor,
value: value,
- time: uint64(time.Now().Unix()),
+ time: big.NewInt(time.Now().Unix()),
}
}
@@ -183,7 +183,7 @@ func (self *VMEnv) State() *state.StateDB { return self.state }
func (self *VMEnv) Origin() common.Address { return *self.transactor }
func (self *VMEnv) BlockNumber() *big.Int { return common.Big0 }
func (self *VMEnv) Coinbase() common.Address { return *self.transactor }
-func (self *VMEnv) Time() uint64 { return self.time }
+func (self *VMEnv) Time() *big.Int { return self.time }
func (self *VMEnv) Difficulty() *big.Int { return common.Big1 }
func (self *VMEnv) BlockHash() []byte { return make([]byte, 32) }
func (self *VMEnv) Value() *big.Int { return self.value }