2017-03-02 13:03:33 +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 params
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
2022-12-15 07:40:33 +00:00
|
|
|
"time"
|
2023-01-25 11:12:28 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common/math"
|
2017-03-02 13:03:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCheckCompatible(t *testing.T) {
|
|
|
|
type test struct {
|
2022-12-15 07:40:33 +00:00
|
|
|
stored, new *ChainConfig
|
|
|
|
headBlock uint64
|
|
|
|
headTimestamp uint64
|
|
|
|
wantErr *ConfigCompatError
|
2017-03-02 13:03:33 +00:00
|
|
|
}
|
|
|
|
tests := []test{
|
2022-12-15 07:40:33 +00:00
|
|
|
{stored: AllEthashProtocolChanges, new: AllEthashProtocolChanges, headBlock: 0, headTimestamp: 0, wantErr: nil},
|
|
|
|
{stored: AllEthashProtocolChanges, new: AllEthashProtocolChanges, headBlock: 0, headTimestamp: uint64(time.Now().Unix()), wantErr: nil},
|
|
|
|
{stored: AllEthashProtocolChanges, new: AllEthashProtocolChanges, headBlock: 100, wantErr: nil},
|
2017-03-02 13:03:33 +00:00
|
|
|
{
|
2022-12-15 07:40:33 +00:00
|
|
|
stored: &ChainConfig{EIP150Block: big.NewInt(10)},
|
|
|
|
new: &ChainConfig{EIP150Block: big.NewInt(20)},
|
|
|
|
headBlock: 9,
|
|
|
|
wantErr: nil,
|
2017-03-02 13:03:33 +00:00
|
|
|
},
|
|
|
|
{
|
2022-12-15 07:40:33 +00:00
|
|
|
stored: AllEthashProtocolChanges,
|
|
|
|
new: &ChainConfig{HomesteadBlock: nil},
|
|
|
|
headBlock: 3,
|
2017-03-02 13:03:33 +00:00
|
|
|
wantErr: &ConfigCompatError{
|
2022-12-15 07:40:33 +00:00
|
|
|
What: "Homestead fork block",
|
|
|
|
StoredBlock: big.NewInt(0),
|
|
|
|
NewBlock: nil,
|
|
|
|
RewindToBlock: 0,
|
2017-03-02 13:03:33 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-12-15 07:40:33 +00:00
|
|
|
stored: AllEthashProtocolChanges,
|
|
|
|
new: &ChainConfig{HomesteadBlock: big.NewInt(1)},
|
|
|
|
headBlock: 3,
|
2017-03-02 13:03:33 +00:00
|
|
|
wantErr: &ConfigCompatError{
|
2022-12-15 07:40:33 +00:00
|
|
|
What: "Homestead fork block",
|
|
|
|
StoredBlock: big.NewInt(0),
|
|
|
|
NewBlock: big.NewInt(1),
|
|
|
|
RewindToBlock: 0,
|
2017-03-02 13:03:33 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2022-12-15 07:40:33 +00:00
|
|
|
stored: &ChainConfig{HomesteadBlock: big.NewInt(30), EIP150Block: big.NewInt(10)},
|
|
|
|
new: &ChainConfig{HomesteadBlock: big.NewInt(25), EIP150Block: big.NewInt(20)},
|
|
|
|
headBlock: 25,
|
2017-03-02 13:03:33 +00:00
|
|
|
wantErr: &ConfigCompatError{
|
2022-12-15 07:40:33 +00:00
|
|
|
What: "EIP150 fork block",
|
|
|
|
StoredBlock: big.NewInt(10),
|
|
|
|
NewBlock: big.NewInt(20),
|
|
|
|
RewindToBlock: 9,
|
2017-03-02 13:03:33 +00:00
|
|
|
},
|
|
|
|
},
|
2020-09-16 06:39:35 +00:00
|
|
|
{
|
2022-12-15 07:40:33 +00:00
|
|
|
stored: &ChainConfig{ConstantinopleBlock: big.NewInt(30)},
|
|
|
|
new: &ChainConfig{ConstantinopleBlock: big.NewInt(30), PetersburgBlock: big.NewInt(30)},
|
|
|
|
headBlock: 40,
|
|
|
|
wantErr: nil,
|
2020-09-16 06:39:35 +00:00
|
|
|
},
|
|
|
|
{
|
2022-12-15 07:40:33 +00:00
|
|
|
stored: &ChainConfig{ConstantinopleBlock: big.NewInt(30)},
|
|
|
|
new: &ChainConfig{ConstantinopleBlock: big.NewInt(30), PetersburgBlock: big.NewInt(31)},
|
|
|
|
headBlock: 40,
|
2020-09-16 06:39:35 +00:00
|
|
|
wantErr: &ConfigCompatError{
|
2022-12-15 07:40:33 +00:00
|
|
|
What: "Petersburg fork block",
|
|
|
|
StoredBlock: nil,
|
|
|
|
NewBlock: big.NewInt(31),
|
|
|
|
RewindToBlock: 30,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2023-02-10 11:34:45 +00:00
|
|
|
stored: &ChainConfig{ShanghaiTime: newUint64(10)},
|
|
|
|
new: &ChainConfig{ShanghaiTime: newUint64(20)},
|
2022-12-15 07:40:33 +00:00
|
|
|
headTimestamp: 9,
|
|
|
|
wantErr: nil,
|
|
|
|
},
|
|
|
|
{
|
2023-02-10 11:34:45 +00:00
|
|
|
stored: &ChainConfig{ShanghaiTime: newUint64(10)},
|
|
|
|
new: &ChainConfig{ShanghaiTime: newUint64(20)},
|
2022-12-15 07:40:33 +00:00
|
|
|
headTimestamp: 25,
|
|
|
|
wantErr: &ConfigCompatError{
|
|
|
|
What: "Shanghai fork timestamp",
|
2023-02-10 11:34:45 +00:00
|
|
|
StoredTime: newUint64(10),
|
|
|
|
NewTime: newUint64(20),
|
2022-12-15 07:40:33 +00:00
|
|
|
RewindToTime: 9,
|
2020-09-16 06:39:35 +00:00
|
|
|
},
|
|
|
|
},
|
2017-03-02 13:03:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
2022-12-15 07:40:33 +00:00
|
|
|
err := test.stored.CheckCompatible(test.new, test.headBlock, test.headTimestamp)
|
2017-03-02 13:03:33 +00:00
|
|
|
if !reflect.DeepEqual(err, test.wantErr) {
|
2022-12-15 07:40:33 +00:00
|
|
|
t.Errorf("error mismatch:\nstored: %v\nnew: %v\nheadBlock: %v\nheadTimestamp: %v\nerr: %v\nwant: %v", test.stored, test.new, test.headBlock, test.headTimestamp, err, test.wantErr)
|
2017-03-02 13:03:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-01-25 11:12:28 +00:00
|
|
|
|
|
|
|
func TestConfigRules(t *testing.T) {
|
|
|
|
c := &ChainConfig{
|
2023-05-19 08:27:19 +00:00
|
|
|
LondonBlock: new(big.Int),
|
2023-02-10 11:34:45 +00:00
|
|
|
ShanghaiTime: newUint64(500),
|
2023-01-25 11:12:28 +00:00
|
|
|
}
|
|
|
|
var stamp uint64
|
|
|
|
if r := c.Rules(big.NewInt(0), true, stamp); r.IsShanghai {
|
|
|
|
t.Errorf("expected %v to not be shanghai", stamp)
|
|
|
|
}
|
|
|
|
stamp = 500
|
|
|
|
if r := c.Rules(big.NewInt(0), true, stamp); !r.IsShanghai {
|
|
|
|
t.Errorf("expected %v to be shanghai", stamp)
|
|
|
|
}
|
|
|
|
stamp = math.MaxInt64
|
|
|
|
if r := c.Rules(big.NewInt(0), true, stamp); !r.IsShanghai {
|
|
|
|
t.Errorf("expected %v to be shanghai", stamp)
|
|
|
|
}
|
|
|
|
}
|