Преглед на файлове

consensus/ethash: fix TestCalcDifficulty

Felix Lange преди 8 години
родител
ревизия
11cf5b7ead
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      consensus/ethash/consensus_test.go

+ 1 - 1
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 {