aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/vm.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-07-01 18:57:02 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-07-01 18:57:02 +0800
commit2e5242f9bbbf8412fa5b6e94da942e69570d860d (patch)
tree2a5d22c767fb61b4da3e5ad55cd97e2826699f09 /core/vm/vm.go
parentcb2c10d8627d253192bf9af74070b62810d76b31 (diff)
parent4c490db6afeb5a48d3e8d1d65ea8ddc9811d0a6d (diff)
downloaddexon-2e5242f9bbbf8412fa5b6e94da942e69570d860d.tar
dexon-2e5242f9bbbf8412fa5b6e94da942e69570d860d.tar.gz
dexon-2e5242f9bbbf8412fa5b6e94da942e69570d860d.tar.bz2
dexon-2e5242f9bbbf8412fa5b6e94da942e69570d860d.tar.lz
dexon-2e5242f9bbbf8412fa5b6e94da942e69570d860d.tar.xz
dexon-2e5242f9bbbf8412fa5b6e94da942e69570d860d.tar.zst
dexon-2e5242f9bbbf8412fa5b6e94da942e69570d860d.zip
Merge pull request #1355 from Gustav-Simonsson/block_header_ts_uint64
Use uint64 for block header timestamp
Diffstat (limited to 'core/vm/vm.go')
-rw-r--r--core/vm/vm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/vm/vm.go b/core/vm/vm.go
index 9e092300d..ba803683b 100644
--- a/core/vm/vm.go
+++ b/core/vm/vm.go
@@ -444,7 +444,7 @@ func (self *Vm) Run(context *Context, input []byte) (ret []byte, err error) {
case TIMESTAMP:
time := self.env.Time()
- stack.push(big.NewInt(time))
+ stack.push(new(big.Int).SetUint64(time))
case NUMBER:
number := self.env.BlockNumber()