2017-04-04 22:16:29 +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 ethash
|
|
|
|
|
|
|
|
import (
|
2023-02-16 19:36:58 +00:00
|
|
|
crand "crypto/rand"
|
2020-12-11 10:06:44 +00:00
|
|
|
"encoding/binary"
|
2017-04-04 22:16:29 +00:00
|
|
|
"encoding/json"
|
|
|
|
"math/big"
|
2020-12-11 10:06:44 +00:00
|
|
|
"math/rand"
|
2017-04-04 22:16:29 +00:00
|
|
|
"os"
|
2017-07-11 11:49:14 +00:00
|
|
|
"path/filepath"
|
2017-04-04 22:16:29 +00:00
|
|
|
"testing"
|
|
|
|
|
2020-12-11 10:06:44 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2017-04-04 22:16:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/math"
|
2017-02-01 21:36:51 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2017-04-04 22:16:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
|
|
|
)
|
|
|
|
|
|
|
|
type diffTest struct {
|
|
|
|
ParentTimestamp uint64
|
|
|
|
ParentDifficulty *big.Int
|
|
|
|
CurrentTimestamp uint64
|
|
|
|
CurrentBlocknumber *big.Int
|
|
|
|
CurrentDifficulty *big.Int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *diffTest) UnmarshalJSON(b []byte) (err error) {
|
|
|
|
var ext struct {
|
|
|
|
ParentTimestamp string
|
|
|
|
ParentDifficulty string
|
|
|
|
CurrentTimestamp string
|
|
|
|
CurrentBlocknumber string
|
|
|
|
CurrentDifficulty string
|
|
|
|
}
|
|
|
|
if err := json.Unmarshal(b, &ext); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
d.ParentTimestamp = math.MustParseUint64(ext.ParentTimestamp)
|
|
|
|
d.ParentDifficulty = math.MustParseBig256(ext.ParentDifficulty)
|
|
|
|
d.CurrentTimestamp = math.MustParseUint64(ext.CurrentTimestamp)
|
|
|
|
d.CurrentBlocknumber = math.MustParseBig256(ext.CurrentBlocknumber)
|
|
|
|
d.CurrentDifficulty = math.MustParseBig256(ext.CurrentDifficulty)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCalcDifficulty(t *testing.T) {
|
2017-07-11 11:49:14 +00:00
|
|
|
file, err := os.Open(filepath.Join("..", "..", "tests", "testdata", "BasicTests", "difficulty.json"))
|
2017-04-04 22:16:29 +00:00
|
|
|
if err != nil {
|
2017-07-11 11:49:14 +00:00
|
|
|
t.Skip(err)
|
2017-04-04 22:16:29 +00:00
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
tests := make(map[string]diffTest)
|
|
|
|
err = json.NewDecoder(file).Decode(&tests)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
config := ¶ms.ChainConfig{HomesteadBlock: big.NewInt(1150000)}
|
2017-12-22 12:37:50 +00:00
|
|
|
|
2017-04-04 22:16:29 +00:00
|
|
|
for name, test := range tests {
|
|
|
|
number := new(big.Int).Sub(test.CurrentBlocknumber, big.NewInt(1))
|
2017-02-01 21:36:51 +00:00
|
|
|
diff := CalcDifficulty(config, test.CurrentTimestamp, &types.Header{
|
|
|
|
Number: number,
|
2019-04-02 20:28:48 +00:00
|
|
|
Time: test.ParentTimestamp,
|
2017-02-01 21:36:51 +00:00
|
|
|
Difficulty: test.ParentDifficulty,
|
|
|
|
})
|
2017-04-04 22:16:29 +00:00
|
|
|
if diff.Cmp(test.CurrentDifficulty) != 0 {
|
|
|
|
t.Error(name, "failed. Expected", test.CurrentDifficulty, "and calculated", diff)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-11 10:06:44 +00:00
|
|
|
|
|
|
|
func randSlice(min, max uint32) []byte {
|
|
|
|
var b = make([]byte, 4)
|
2023-02-16 19:36:58 +00:00
|
|
|
crand.Read(b)
|
2020-12-11 10:06:44 +00:00
|
|
|
a := binary.LittleEndian.Uint32(b)
|
|
|
|
size := min + a%(max-min)
|
|
|
|
out := make([]byte, size)
|
2023-02-16 19:36:58 +00:00
|
|
|
crand.Read(out)
|
2020-12-11 10:06:44 +00:00
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDifficultyCalculators(t *testing.T) {
|
|
|
|
for i := 0; i < 5000; i++ {
|
|
|
|
// 1 to 300 seconds diff
|
|
|
|
var timeDelta = uint64(1 + rand.Uint32()%3000)
|
2022-06-14 12:09:48 +00:00
|
|
|
diffBig := new(big.Int).SetBytes(randSlice(2, 10))
|
2020-12-11 10:06:44 +00:00
|
|
|
if diffBig.Cmp(params.MinimumDifficulty) < 0 {
|
|
|
|
diffBig.Set(params.MinimumDifficulty)
|
|
|
|
}
|
|
|
|
//rand.Read(difficulty)
|
|
|
|
header := &types.Header{
|
|
|
|
Difficulty: diffBig,
|
|
|
|
Number: new(big.Int).SetUint64(rand.Uint64() % 50_000_000),
|
|
|
|
Time: rand.Uint64() - timeDelta,
|
|
|
|
}
|
|
|
|
if rand.Uint32()&1 == 0 {
|
|
|
|
header.UncleHash = types.EmptyUncleHash
|
|
|
|
}
|
|
|
|
bombDelay := new(big.Int).SetUint64(rand.Uint64() % 50_000_000)
|
|
|
|
for i, pair := range []struct {
|
|
|
|
bigFn func(time uint64, parent *types.Header) *big.Int
|
|
|
|
u256Fn func(time uint64, parent *types.Header) *big.Int
|
|
|
|
}{
|
2022-04-26 08:16:57 +00:00
|
|
|
{FrontierDifficultyCalculator, CalcDifficultyFrontierU256},
|
|
|
|
{HomesteadDifficultyCalculator, CalcDifficultyHomesteadU256},
|
2020-12-11 10:06:44 +00:00
|
|
|
{DynamicDifficultyCalculator(bombDelay), MakeDifficultyCalculatorU256(bombDelay)},
|
|
|
|
} {
|
|
|
|
time := header.Time + timeDelta
|
|
|
|
want := pair.bigFn(time, header)
|
|
|
|
have := pair.u256Fn(time, header)
|
|
|
|
if want.BitLen() > 256 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if want.Cmp(have) != 0 {
|
|
|
|
t.Fatalf("pair %d: want %x have %x\nparent.Number: %x\np.Time: %x\nc.Time: %x\nBombdelay: %v\n", i, want, have,
|
|
|
|
header.Number, header.Time, time, bombDelay)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkDifficultyCalculator(b *testing.B) {
|
|
|
|
x1 := makeDifficultyCalculator(big.NewInt(1000000))
|
|
|
|
x2 := MakeDifficultyCalculatorU256(big.NewInt(1000000))
|
|
|
|
h := &types.Header{
|
|
|
|
ParentHash: common.Hash{},
|
|
|
|
UncleHash: types.EmptyUncleHash,
|
|
|
|
Difficulty: big.NewInt(0xffffff),
|
|
|
|
Number: big.NewInt(500000),
|
|
|
|
Time: 1000000,
|
|
|
|
}
|
|
|
|
b.Run("big-frontier", func(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
calcDifficultyFrontier(1000014, h)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
b.Run("u256-frontier", func(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
CalcDifficultyFrontierU256(1000014, h)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
b.Run("big-homestead", func(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
calcDifficultyHomestead(1000014, h)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
b.Run("u256-homestead", func(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
CalcDifficultyHomesteadU256(1000014, h)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
b.Run("big-generic", func(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
x1(1000014, h)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
b.Run("u256-generic", func(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
x2(1000014, h)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|