mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
* add proof for predeployed storages * reverse inneeded code * update for mainbranch merging * add pertx storage trace * dummy tx proof * add txstorage trace * add coinbase storage as trace * enable (sync) tracing by default * basic * init cgo framework * fix break loop * integrate the right zkevm version (#323) * finish rust codes * use dylib (#325) * flip * ? * use cdylib * revert * fix * apply_tx * rename * fixing types fixing types fixing types * clean up * ExecutionResults (#328) * filling * filling * more * clean up * filling * coinbase * add * MPTWitness * ExecutionResults WIP * L1fee L1fee * sender * to * Failed & ReturnValue * createdAcc & after * remove MPTWitness * txStorageTrace * add FeeRecipient * add StorageTrace * fix FFI types * better logger * cargo fmt * fix * add build tags * update Makefile * fix library * improve ld path * correctly deal with circuit_capacity_checker returned result * fix return value * update cargo (#333) * update cargo * update * update go * refactor * raname `circuits capacity checker` to `circuit capacity checker` * some refactorings * [Fix] storage proof generation in capacity checker (#348) * make per-tx storage and deletion proof work * format * fix misplaced markdeletion --------- Co-authored-by: HAOYUatHZ <haoyu@protonmail.com> * docker (#363) * update Dockerfile * build: update go version to 1.19 * update * fix * fix * try * simplify * revert go version update l2geth Dockerfiles * fix * fix coinbase * fix (#369) * format * Update version.go * address comments * Capacity refactor (#374) * init * id * support multiple instances * fix id * fix conflicts * refactor to use same codes (#379) * re-init * WIP * WIP * refactor * go * minor * fix storage proof of l1gas price oracle * move 1 * move 2 * move 3 * move 4 * move 5 move 5 * move 6 move 6 * move 7 * move 8 * move 9 * move 10 * clean up clean up --------- Co-authored-by: Ho Vei <noelwei@gmail.com> * finish basic * minor * config capacity check in block_validator (#380) * init * done ref * fix tests fix tests fix tests fix tests * add more comments * apply_block * improve logs * cargo fmt * Capacity big refactor (#383) * CreateTraceEnv * WIP * draft more fix * for test * fortet * clean up * add more comments * goimports -local github.com/scroll-tech/go-ethereum -w . * fix typos * attempt 1 * attempt 2 * attempt 3 * gogogo * clean up * fix * fix * rename * minor * fix * minor * minor * improve doc * use dedicated `checkCircuitCapacity` flag (#394) * refactor * fix * add lock * [feat] capacity checking: upgrade libzkp (#395) * upgrade * upgrade libzkp * write RowConsumption (#396) * write RowConsumption * name alignments * revert some formatting * add lock to CircuitCapacityChecker in BlockValidator * remove mutex pointer * improve github workflow * improve * store row consumption in mining (#397) * prepare * finish * add more logs * mark `ApplyBlock` as ready * update libzkp (#401) * fix * Capacity detail (#402) * fix(block-validation): consider skipping in ValidateL1Messages (#405) * fix(block-validation): consider skipping in ValidateL1Messages * fix(block): consider skipping in L1MessageCount * fix l1 validation tests * fix NumL1Messages * fix impl.go return types fix * better error handling (#407) * add add * add * add * add * add * cargo fmt * add * update * add * WIP * minor * gogogo * gogogo * fix * fix * fix * cargo clippy * improve * improve * creation lock (#408) * creation lock * update * Debug log (#409) * add more logs * more * more * fix * improve * Update cmd/utils/flags.go Co-authored-by: Péter Garamvölgyi <peter@scroll.io> * refactor worker.commit() * avoid re-calculate * txpool ccc err handling (#411) * more explicit error comments * add more logs * fix unnecessary commit * add more logs * fix `ineffassign` * add more comments * log id for `NewCircuitCapacityChecker` (#414) add log to `NewCircuitCapacityChecker` * Persist skip info for block where all L1 msgs are skipped (#415) persist skip info for block where all L1 msgs are skipped * Update version.go --------- Co-authored-by: Ho Vei <noelwei@gmail.com> Co-authored-by: Zhang Zhuo <mycinbrin@gmail.com> Co-authored-by: Péter Garamvölgyi <peter@scroll.io>
217 lines
7.4 KiB
Go
217 lines
7.4 KiB
Go
// 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 core
|
|
|
|
import (
|
|
"math/big"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/davecgh/go-spew/spew"
|
|
|
|
"github.com/scroll-tech/go-ethereum/common"
|
|
"github.com/scroll-tech/go-ethereum/consensus/ethash"
|
|
"github.com/scroll-tech/go-ethereum/core/rawdb"
|
|
"github.com/scroll-tech/go-ethereum/core/vm"
|
|
"github.com/scroll-tech/go-ethereum/ethdb"
|
|
"github.com/scroll-tech/go-ethereum/params"
|
|
)
|
|
|
|
func TestInvalidCliqueConfig(t *testing.T) {
|
|
block := DefaultGoerliGenesisBlock()
|
|
block.ExtraData = []byte{}
|
|
if _, err := block.Commit(nil); err == nil {
|
|
t.Fatal("Expected error on invalid clique config")
|
|
}
|
|
}
|
|
|
|
func TestSetupGenesis(t *testing.T) {
|
|
var (
|
|
customghash = common.HexToHash("0x700380ab70d789c462c4e8f0db082842095321f390d0a3f25f400f0746db32bc")
|
|
customg = Genesis{
|
|
Config: ¶ms.ChainConfig{HomesteadBlock: big.NewInt(3)},
|
|
Alloc: GenesisAlloc{
|
|
{1}: {Balance: big.NewInt(1), Storage: map[common.Hash]common.Hash{{1}: {1}}},
|
|
},
|
|
}
|
|
oldcustomg = customg
|
|
)
|
|
oldcustomg.Config = ¶ms.ChainConfig{HomesteadBlock: big.NewInt(2)}
|
|
tests := []struct {
|
|
name string
|
|
fn func(ethdb.Database) (*params.ChainConfig, common.Hash, error)
|
|
wantConfig *params.ChainConfig
|
|
wantHash common.Hash
|
|
wantErr error
|
|
}{
|
|
{
|
|
name: "genesis without ChainConfig",
|
|
fn: func(db ethdb.Database) (*params.ChainConfig, common.Hash, error) {
|
|
return SetupGenesisBlock(db, new(Genesis))
|
|
},
|
|
wantErr: errGenesisNoConfig,
|
|
wantConfig: params.AllEthashProtocolChanges,
|
|
},
|
|
// {
|
|
// name: "no block in DB, genesis == nil",
|
|
// fn: func(db ethdb.Database) (*params.ChainConfig, common.Hash, error) {
|
|
// return SetupGenesisBlock(db, nil)
|
|
// },
|
|
// wantHash: params.MainnetGenesisHash,
|
|
// wantConfig: params.MainnetChainConfig,
|
|
// },
|
|
// {
|
|
// name: "mainnet block in DB, genesis == nil",
|
|
// fn: func(db ethdb.Database) (*params.ChainConfig, common.Hash, error) {
|
|
// DefaultGenesisBlock().MustCommit(db)
|
|
// return SetupGenesisBlock(db, nil)
|
|
// },
|
|
// wantHash: params.MainnetGenesisHash,
|
|
// wantConfig: params.MainnetChainConfig,
|
|
// },
|
|
{
|
|
name: "custom block in DB, genesis == nil",
|
|
fn: func(db ethdb.Database) (*params.ChainConfig, common.Hash, error) {
|
|
customg.MustCommit(db)
|
|
return SetupGenesisBlock(db, nil)
|
|
},
|
|
wantHash: customghash,
|
|
wantConfig: customg.Config,
|
|
},
|
|
// {
|
|
// name: "custom block in DB, genesis == ropsten",
|
|
// fn: func(db ethdb.Database) (*params.ChainConfig, common.Hash, error) {
|
|
// customg.MustCommit(db)
|
|
// return SetupGenesisBlock(db, DefaultRopstenGenesisBlock())
|
|
// },
|
|
// wantErr: &GenesisMismatchError{Stored: customghash, New: params.RopstenGenesisHash},
|
|
// wantHash: params.RopstenGenesisHash,
|
|
// wantConfig: params.RopstenChainConfig,
|
|
// },
|
|
{
|
|
name: "compatible config in DB",
|
|
fn: func(db ethdb.Database) (*params.ChainConfig, common.Hash, error) {
|
|
oldcustomg.MustCommit(db)
|
|
return SetupGenesisBlock(db, &customg)
|
|
},
|
|
wantHash: customghash,
|
|
wantConfig: customg.Config,
|
|
},
|
|
{
|
|
name: "incompatible config in DB",
|
|
fn: func(db ethdb.Database) (*params.ChainConfig, common.Hash, error) {
|
|
// Commit the 'old' genesis block with Homestead transition at #2.
|
|
// Advance to block #4, past the homestead transition block of customg.
|
|
genesis := oldcustomg.MustCommit(db)
|
|
|
|
bc, _ := NewBlockChain(db, nil, oldcustomg.Config, ethash.NewFullFaker(), vm.Config{}, nil, nil, false)
|
|
defer bc.Stop()
|
|
|
|
blocks, _ := GenerateChain(oldcustomg.Config, genesis, ethash.NewFaker(), db, 4, nil)
|
|
bc.InsertChain(blocks)
|
|
bc.CurrentBlock()
|
|
// This should return a compatibility error.
|
|
return SetupGenesisBlock(db, &customg)
|
|
},
|
|
wantHash: customghash,
|
|
wantConfig: customg.Config,
|
|
wantErr: ¶ms.ConfigCompatError{
|
|
What: "Homestead fork block",
|
|
StoredConfig: big.NewInt(2),
|
|
NewConfig: big.NewInt(3),
|
|
RewindTo: 1,
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
db := rawdb.NewMemoryDatabase()
|
|
config, hash, err := test.fn(db)
|
|
// Check the return values.
|
|
if !reflect.DeepEqual(err, test.wantErr) {
|
|
spew := spew.ConfigState{DisablePointerAddresses: true, DisableCapacities: true}
|
|
t.Errorf("%s: returned error %#v, want %#v", test.name, spew.NewFormatter(err), spew.NewFormatter(test.wantErr))
|
|
}
|
|
if !reflect.DeepEqual(config, test.wantConfig) {
|
|
t.Errorf("%s:\nreturned %v\nwant %v", test.name, config, test.wantConfig)
|
|
}
|
|
if hash != test.wantHash {
|
|
t.Errorf("%s: returned hash %s, want %s", test.name, hash.Hex(), test.wantHash.Hex())
|
|
} else if err == nil {
|
|
// Check database content.
|
|
stored := rawdb.ReadBlock(db, test.wantHash, 0)
|
|
if stored.Hash() != test.wantHash {
|
|
t.Errorf("%s: block in DB has hash %s, want %s", test.name, stored.Hash(), test.wantHash)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// TestGenesisHashes checks the congruity of default genesis data to
|
|
// corresponding hardcoded genesis hash values.
|
|
func TestGenesisHashes(t *testing.T) {
|
|
for i, c := range []struct {
|
|
genesis *Genesis
|
|
want common.Hash
|
|
}{
|
|
// {DefaultGenesisBlock(), params.MainnetGenesisHash},
|
|
// {DefaultGoerliGenesisBlock(), params.GoerliGenesisHash},
|
|
// {DefaultRopstenGenesisBlock(), params.RopstenGenesisHash},
|
|
// {DefaultRinkebyGenesisBlock(), params.RinkebyGenesisHash},
|
|
// {DefaultSepoliaGenesisBlock(), params.SepoliaGenesisHash},
|
|
{DefaultScrollAlphaGenesisBlock(), params.ScrollAlphaGenesisHash},
|
|
} {
|
|
// Test via MustCommit
|
|
if have := c.genesis.MustCommit(rawdb.NewMemoryDatabase()).Hash(); have != c.want {
|
|
t.Errorf("case: %d a), want: %s, got: %s", i, c.want.Hex(), have.Hex())
|
|
}
|
|
// Test via ToBlock
|
|
if have := c.genesis.ToBlock(nil).Hash(); have != c.want {
|
|
t.Errorf("case: %d a), want: %s, got: %s", i, c.want.Hex(), have.Hex())
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestGenesis_Commit(t *testing.T) {
|
|
genesis := &Genesis{
|
|
BaseFee: big.NewInt(params.InitialBaseFee),
|
|
Config: params.TestChainConfig,
|
|
// difficulty is nil
|
|
}
|
|
|
|
db := rawdb.NewMemoryDatabase()
|
|
genesisBlock, err := genesis.Commit(db)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if genesis.Difficulty != nil {
|
|
t.Fatalf("assumption wrong")
|
|
}
|
|
|
|
// This value should have been set as default in the ToBlock method.
|
|
if genesisBlock.Difficulty().Cmp(params.GenesisDifficulty) != 0 {
|
|
t.Errorf("assumption wrong: want: %d, got: %v", params.GenesisDifficulty, genesisBlock.Difficulty())
|
|
}
|
|
|
|
// Expect the stored total difficulty to be the difficulty of the genesis block.
|
|
stored := rawdb.ReadTd(db, genesisBlock.Hash(), genesisBlock.NumberU64())
|
|
|
|
if stored.Cmp(genesisBlock.Difficulty()) != 0 {
|
|
t.Errorf("inequal difficulty; stored: %v, genesisBlock: %v", stored, genesisBlock.Difficulty())
|
|
}
|
|
}
|