aboutsummaryrefslogtreecommitdiffstats
path: root/consensus/ethash/consensus_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'consensus/ethash/consensus_test.go')
-rw-r--r--consensus/ethash/consensus_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/consensus/ethash/consensus_test.go b/consensus/ethash/consensus_test.go
index 78464bd22..0a375b0bc 100644
--- a/consensus/ethash/consensus_test.go
+++ b/consensus/ethash/consensus_test.go
@@ -74,7 +74,7 @@ func TestCalcDifficulty(t *testing.T) {
number := new(big.Int).Sub(test.CurrentBlocknumber, big.NewInt(1))
diff := CalcDifficulty(config, test.CurrentTimestamp, &types.Header{
Number: number,
- Time: test.ParentTimestamp,
+ Time: new(big.Int).SetUint64(test.ParentTimestamp),
Difficulty: test.ParentDifficulty,
})
if diff.Cmp(test.CurrentDifficulty) != 0 {