aboutsummaryrefslogtreecommitdiffstats
path: root/xeth
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 /xeth
parentcb2c10d8627d253192bf9af74070b62810d76b31 (diff)
parent4c490db6afeb5a48d3e8d1d65ea8ddc9811d0a6d (diff)
downloadgo-tangerine-2e5242f9bbbf8412fa5b6e94da942e69570d860d.tar.gz
go-tangerine-2e5242f9bbbf8412fa5b6e94da942e69570d860d.tar.zst
go-tangerine-2e5242f9bbbf8412fa5b6e94da942e69570d860d.zip
Merge pull request #1355 from Gustav-Simonsson/block_header_ts_uint64
Use uint64 for block header timestamp
Diffstat (limited to 'xeth')
-rw-r--r--xeth/types.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/types.go b/xeth/types.go
index ed64dc45e..1d6a0c5ca 100644
--- a/xeth/types.go
+++ b/xeth/types.go
@@ -60,7 +60,7 @@ type Block struct {
Hash string `json:"hash"`
Transactions *common.List `json:"transactions"`
Uncles *common.List `json:"uncles"`
- Time int64 `json:"time"`
+ Time uint64 `json:"time"`
Coinbase string `json:"coinbase"`
Name string `json:"name"`
GasLimit string `json:"gasLimit"`