mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-15 08:23:46 +00:00
rm chainConfig from OnGenesisBlock
This commit is contained in:
parent
9e5c96fdff
commit
f862531c25
3 changed files with 4 additions and 4 deletions
|
|
@ -194,7 +194,7 @@ type BlockchainLogger interface {
|
||||||
// `td` is the total difficulty prior to `block`.
|
// `td` is the total difficulty prior to `block`.
|
||||||
OnBlockStart(block *types.Block, td *big.Int, finalized *types.Header, safe *types.Header, chainConfig *params.ChainConfig)
|
OnBlockStart(block *types.Block, td *big.Int, finalized *types.Header, safe *types.Header, chainConfig *params.ChainConfig)
|
||||||
OnBlockEnd(err error)
|
OnBlockEnd(err error)
|
||||||
OnGenesisBlock(genesis *types.Block, alloc GenesisAlloc, chainConfig *params.ChainConfig)
|
OnGenesisBlock(genesis *types.Block, alloc GenesisAlloc)
|
||||||
OnBeaconBlockRootStart(root common.Hash)
|
OnBeaconBlockRootStart(root common.Hash)
|
||||||
OnBeaconBlockRootEnd()
|
OnBeaconBlockRootEnd()
|
||||||
}
|
}
|
||||||
|
|
@ -461,7 +461,7 @@ func NewBlockChain(db ethdb.Database, cacheConfig *CacheConfig, genesis *Genesis
|
||||||
return nil, fmt.Errorf("live blockchain tracer requires genesis alloc to be set")
|
return nil, fmt.Errorf("live blockchain tracer requires genesis alloc to be set")
|
||||||
}
|
}
|
||||||
|
|
||||||
bc.logger.OnGenesisBlock(bc.genesisBlock, alloc, bc.chainConfig)
|
bc.logger.OnGenesisBlock(bc.genesisBlock, alloc)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -540,7 +540,7 @@ func (g *Genesis) Commit(db ethdb.Database, triedb *trie.Database, bcLogger Bloc
|
||||||
return nil, errors.New("can't start clique chain without signers")
|
return nil, errors.New("can't start clique chain without signers")
|
||||||
}
|
}
|
||||||
if bcLogger != nil {
|
if bcLogger != nil {
|
||||||
bcLogger.OnGenesisBlock(block, g.Alloc, config)
|
bcLogger.OnGenesisBlock(block, g.Alloc)
|
||||||
}
|
}
|
||||||
// All the checks has passed, flush the states derived from the genesis
|
// All the checks has passed, flush the states derived from the genesis
|
||||||
// specification as well as the specification itself into the provided
|
// specification as well as the specification itself into the provided
|
||||||
|
|
|
||||||
|
|
@ -97,7 +97,7 @@ func (p *Printer) OnBlockEnd(err error) {
|
||||||
fmt.Printf("OnBlockEnd: err=%v\n", err)
|
fmt.Printf("OnBlockEnd: err=%v\n", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *Printer) OnGenesisBlock(b *types.Block, alloc core.GenesisAlloc, _ *params.ChainConfig) {
|
func (p *Printer) OnGenesisBlock(b *types.Block, alloc core.GenesisAlloc) {
|
||||||
fmt.Printf("OnGenesisBlock: b=%v, allocLength=%d\n", b.NumberU64(), len(alloc))
|
fmt.Printf("OnGenesisBlock: b=%v, allocLength=%d\n", b.NumberU64(), len(alloc))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue