2017-09-27 13:30:41 +00:00
|
|
|
// Copyright 2017 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package tests
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"math/big"
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
"github.com/ledgerwatch/erigon-lib/chain"
|
|
|
|
libcommon "github.com/ledgerwatch/erigon-lib/common"
|
|
|
|
|
2021-05-20 18:25:53 +00:00
|
|
|
"github.com/ledgerwatch/erigon/common/math"
|
|
|
|
"github.com/ledgerwatch/erigon/consensus/ethash"
|
|
|
|
"github.com/ledgerwatch/erigon/core/types"
|
2017-09-27 13:30:41 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
//go:generate gencodec -type DifficultyTest -field-override difficultyTestMarshaling -out gen_difficultytest.go
|
|
|
|
|
|
|
|
type DifficultyTest struct {
|
2021-12-07 17:24:59 +00:00
|
|
|
ParentTimestamp uint64 `json:"parentTimestamp"`
|
|
|
|
ParentDifficulty *big.Int `json:"parentDifficulty"`
|
|
|
|
ParentUncles uint64 `json:"parentUncles"`
|
|
|
|
CurrentTimestamp uint64 `json:"currentTimestamp"`
|
|
|
|
CurrentBlockNumber uint64 `json:"currentBlockNumber"`
|
|
|
|
CurrentDifficulty *big.Int `json:"currentDifficulty"`
|
2017-09-27 13:30:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type difficultyTestMarshaling struct {
|
2019-04-02 20:28:48 +00:00
|
|
|
ParentTimestamp math.HexOrDecimal64
|
2017-09-27 13:30:41 +00:00
|
|
|
ParentDifficulty *math.HexOrDecimal256
|
2019-04-02 20:28:48 +00:00
|
|
|
CurrentTimestamp math.HexOrDecimal64
|
2017-09-27 13:30:41 +00:00
|
|
|
CurrentDifficulty *math.HexOrDecimal256
|
2021-12-07 17:24:59 +00:00
|
|
|
ParentUncles uint64
|
2017-09-27 13:30:41 +00:00
|
|
|
CurrentBlockNumber math.HexOrDecimal64
|
|
|
|
}
|
|
|
|
|
2023-01-13 18:12:18 +00:00
|
|
|
func (test *DifficultyTest) Run(config *chain.Config) error {
|
2017-09-27 13:30:41 +00:00
|
|
|
parentNumber := big.NewInt(int64(test.CurrentBlockNumber - 1))
|
|
|
|
parent := &types.Header{
|
|
|
|
Difficulty: test.ParentDifficulty,
|
|
|
|
Time: test.ParentTimestamp,
|
|
|
|
Number: parentNumber,
|
2021-12-07 17:24:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if test.ParentUncles == 0 {
|
|
|
|
parent.UncleHash = types.EmptyUncleHash
|
|
|
|
} else {
|
2023-01-13 18:12:18 +00:00
|
|
|
parent.UncleHash = libcommon.HexToHash("ab") // some dummy != EmptyUncleHash
|
2017-09-27 13:30:41 +00:00
|
|
|
}
|
|
|
|
|
2021-04-22 17:11:37 +00:00
|
|
|
actual := ethash.CalcDifficulty(config, test.CurrentTimestamp, parent.Time, parent.Difficulty, parent.Number.Uint64(), parent.UncleHash)
|
2017-09-27 13:30:41 +00:00
|
|
|
exp := test.CurrentDifficulty
|
|
|
|
|
|
|
|
if actual.Cmp(exp) != 0 {
|
|
|
|
return fmt.Errorf("parent[time %v diff %v unclehash:%x] child[time %v number %v] diff %v != expected %v",
|
2021-12-07 17:24:59 +00:00
|
|
|
test.ParentTimestamp, test.ParentDifficulty, test.ParentUncles,
|
2017-09-27 13:30:41 +00:00
|
|
|
test.CurrentTimestamp, test.CurrentBlockNumber, actual, exp)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
|
|
|
|
}
|