mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
e81852320c
ergon/metrics contains a lot of unused types - the pull is removing them prior to rationalizing between Prometheus and Victoria Metrics types. It also have upgrades of golang-lru + sets types to v2 when possible.
152 lines
4.1 KiB
Go
152 lines
4.1 KiB
Go
package ethash
|
|
|
|
import (
|
|
"time"
|
|
|
|
mapset "github.com/deckarep/golang-set/v2"
|
|
libcommon "github.com/ledgerwatch/erigon-lib/common"
|
|
"github.com/ledgerwatch/erigon/consensus/ethash/ethashcfg"
|
|
"github.com/ledgerwatch/log/v3"
|
|
|
|
"github.com/ledgerwatch/erigon/consensus"
|
|
"github.com/ledgerwatch/erigon/core/types"
|
|
)
|
|
|
|
type FakeEthash struct {
|
|
Ethash
|
|
fakeFail uint64 // Block number which fails PoW check even in fake mode
|
|
fakeDelay time.Duration // Time delay to sleep for before returning from verify
|
|
}
|
|
|
|
// NewFakeFailer creates a ethash consensus engine with a fake PoW scheme that
|
|
// accepts all blocks as valid apart from the single one specified, though they
|
|
// still have to conform to the Ethereum consensus rules.
|
|
func NewFakeFailer(fail uint64) *FakeEthash {
|
|
return &FakeEthash{
|
|
Ethash: newFakeEth(ethashcfg.ModeFake),
|
|
fakeFail: fail,
|
|
}
|
|
}
|
|
|
|
// NewFaker creates a ethash consensus engine with a fake PoW scheme that accepts
|
|
// all blocks' seal as valid, though they still have to conform to the Ethereum
|
|
// consensus rules.
|
|
func NewFaker() *FakeEthash {
|
|
return &FakeEthash{
|
|
Ethash: newFakeEth(ethashcfg.ModeFake),
|
|
}
|
|
}
|
|
|
|
// NewFakeDelayer creates a ethash consensus engine with a fake PoW scheme that
|
|
// accepts all blocks as valid, but delays verifications by some time, though
|
|
// they still have to conform to the Ethereum consensus rules.
|
|
func NewFakeDelayer(delay time.Duration) *FakeEthash {
|
|
return &FakeEthash{
|
|
Ethash: newFakeEth(ethashcfg.ModeFake),
|
|
fakeDelay: delay,
|
|
}
|
|
}
|
|
|
|
func newFakeEth(mode ethashcfg.Mode) Ethash {
|
|
return Ethash{
|
|
config: ethashcfg.Config{
|
|
PowMode: mode,
|
|
Log: log.Root(),
|
|
},
|
|
}
|
|
}
|
|
|
|
func (f *FakeEthash) VerifyHeader(chain consensus.ChainHeaderReader, header *types.Header, seal bool) error {
|
|
err := f.Ethash.VerifyHeader(chain, header, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if seal {
|
|
return f.VerifySeal(chain, header)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (f *FakeEthash) VerifyUncles(chain consensus.ChainReader, header *types.Header, uncles []*types.Header) error {
|
|
if len(uncles) > maxUncles {
|
|
return errTooManyUncles
|
|
}
|
|
if len(uncles) == 0 {
|
|
return nil
|
|
}
|
|
|
|
uncleBlocks, ancestors := getUncles(chain, header)
|
|
|
|
for _, uncle := range uncles {
|
|
if err := f.VerifyUncle(chain, header, uncle, uncleBlocks, ancestors, true); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (f *FakeEthash) VerifyUncle(chain consensus.ChainHeaderReader, block *types.Header, uncle *types.Header, uncles mapset.Set[libcommon.Hash], ancestors map[libcommon.Hash]*types.Header, seal bool) error {
|
|
err := f.Ethash.VerifyUncle(chain, block, uncle, uncles, ancestors, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if seal {
|
|
return f.VerifySeal(chain, uncle)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// If we're running a fake PoW, accept any seal as valid
|
|
func (f *FakeEthash) VerifySeal(_ consensus.ChainHeaderReader, header *types.Header) error {
|
|
if f.fakeDelay > 0 {
|
|
time.Sleep(f.fakeDelay)
|
|
}
|
|
|
|
if f.fakeFail == header.Number.Uint64() {
|
|
return errInvalidPoW
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// If we're running a fake PoW, simply return a 0 nonce immediately
|
|
func (f *FakeEthash) Seal(_ consensus.ChainHeaderReader, block *types.Block, results chan<- *types.Block, stop <-chan struct{}) error {
|
|
header := block.Header()
|
|
header.Nonce, header.MixDigest = types.BlockNonce{}, libcommon.Hash{}
|
|
|
|
select {
|
|
case results <- block.WithSeal(header):
|
|
default:
|
|
f.Ethash.config.Log.Warn("Sealing result is not read by miner", "mode", "fake", "sealhash", f.SealHash(block.Header()))
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
type FullFakeEthash FakeEthash
|
|
|
|
// NewFullFaker creates an ethash consensus engine with a full fake scheme that
|
|
// accepts all blocks as valid, without checking any consensus rules whatsoever.
|
|
func NewFullFaker() *FullFakeEthash {
|
|
return &FullFakeEthash{
|
|
Ethash: Ethash{
|
|
config: ethashcfg.Config{
|
|
PowMode: ethashcfg.ModeFullFake,
|
|
Log: log.Root(),
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
// If we're running a full engine faking, accept any input as valid
|
|
func (f *FullFakeEthash) VerifyHeader(_ consensus.ChainHeaderReader, _ *types.Header, _ bool) error {
|
|
return nil
|
|
}
|
|
|
|
func (f *FullFakeEthash) VerifyUncles(_ consensus.ChainReader, _ *types.Header, _ []*types.Header) error {
|
|
return nil
|
|
}
|