aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/block_test.go
diff options
context:
space:
mode:
authorGustav Simonsson <gustav.simonsson@gmail.com>2015-06-30 15:13:16 +0800
committerGustav Simonsson <gustav.simonsson@gmail.com>2015-06-30 16:52:11 +0800
commit4c490db6afeb5a48d3e8d1d65ea8ddc9811d0a6d (patch)
tree4bb5055690cae276a5480572b463cd06fa219f23 /core/types/block_test.go
parentbe935bff84d54cd7a7f4074e2326d62f664ba4e3 (diff)
downloaddexon-4c490db6afeb5a48d3e8d1d65ea8ddc9811d0a6d.tar
dexon-4c490db6afeb5a48d3e8d1d65ea8ddc9811d0a6d.tar.gz
dexon-4c490db6afeb5a48d3e8d1d65ea8ddc9811d0a6d.tar.bz2
dexon-4c490db6afeb5a48d3e8d1d65ea8ddc9811d0a6d.tar.lz
dexon-4c490db6afeb5a48d3e8d1d65ea8ddc9811d0a6d.tar.xz
dexon-4c490db6afeb5a48d3e8d1d65ea8ddc9811d0a6d.tar.zst
dexon-4c490db6afeb5a48d3e8d1d65ea8ddc9811d0a6d.zip
Use uint64 for block header timestamp
Diffstat (limited to 'core/types/block_test.go')
-rw-r--r--core/types/block_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/types/block_test.go b/core/types/block_test.go
index 03e6881be..e0b98cd26 100644
--- a/core/types/block_test.go
+++ b/core/types/block_test.go
@@ -31,7 +31,7 @@ func TestBlockEncoding(t *testing.T) {
check("Root", block.Root(), common.HexToHash("ef1552a40b7165c3cd773806b9e0c165b75356e0314bf0706f279c729f51e017"))
check("Hash", block.Hash(), common.HexToHash("0a5843ac1cb04865017cb35a57b50b07084e5fcee39b5acadade33149f4fff9e"))
check("Nonce", block.Nonce(), uint64(0xa13a5a8c8f2bb1c4))
- check("Time", block.Time(), int64(1426516743))
+ check("Time", block.Time(), uint64(1426516743))
check("Size", block.Size(), common.StorageSize(len(blockEnc)))
tx1 := NewTransaction(0, common.HexToAddress("095e7baea6a6c7c4c2dfeb977efac326af552d87"), big.NewInt(10), big.NewInt(50000), big.NewInt(10), nil)