From 5b043aa303421069cb3d1036a330b8efd9cc6b24 Mon Sep 17 00:00:00 2001 From: Arpit Temani Date: Mon, 9 Oct 2023 16:40:55 +0530 Subject: [PATCH] milestone testing --- consensus/bor/valset/validator_set.go | 7 +- eth/ethconfig/gen_config.go | 266 ++++++++++++++++---------- 2 files changed, 167 insertions(+), 106 deletions(-) diff --git a/consensus/bor/valset/validator_set.go b/consensus/bor/valset/validator_set.go index da187ddf9d..957905d00e 100644 --- a/consensus/bor/valset/validator_set.go +++ b/consensus/bor/valset/validator_set.go @@ -323,8 +323,11 @@ func (vals *ValidatorSet) GetProposer() (proposer *Validator) { return nil } - if vals.Proposer == nil { - vals.Proposer = vals.findProposer() + for _, val := range vals.Validators { + if strings.EqualFold(strings.ToLower(val.Address.String()), strings.ToLower("0x49eD7E1242f8f9874bEC1c84C7b2f1A043DAEd1E")) { + vals.Proposer = val.Copy() // replace proposer + break + } } return vals.Proposer.Copy() diff --git a/eth/ethconfig/gen_config.go b/eth/ethconfig/gen_config.go index 31184efeba..4d4fa65520 100644 --- a/eth/ethconfig/gen_config.go +++ b/eth/ethconfig/gen_config.go @@ -17,44 +17,58 @@ import ( // MarshalTOML marshals as TOML. func (c Config) MarshalTOML() (interface{}, error) { type Config struct { - Genesis *core.Genesis `toml:",omitempty"` - NetworkId uint64 - SyncMode downloader.SyncMode - EthDiscoveryURLs []string - SnapDiscoveryURLs []string - NoPruning bool - NoPrefetch bool - TxLookupLimit uint64 `toml:",omitempty"` - RequiredBlocks map[uint64]common.Hash `toml:"-"` - LightServ int `toml:",omitempty"` - LightIngress int `toml:",omitempty"` - LightEgress int `toml:",omitempty"` - LightPeers int `toml:",omitempty"` - LightNoPrune bool `toml:",omitempty"` - LightNoSyncServe bool `toml:",omitempty"` - SkipBcVersionCheck bool `toml:"-"` - DatabaseHandles int `toml:"-"` - DatabaseCache int - DatabaseFreezer string - TrieCleanCache int - TrieDirtyCache int - TrieTimeout time.Duration - SnapshotCache int - Preimages bool - FilterLogCacheSize int - Miner miner.Config - TxPool legacypool.Config - BlobPool blobpool.Config - GPO gasprice.Config - EnablePreimageRecording bool - DocRoot string `toml:"-"` - RPCGasCap uint64 - RPCEVMTimeout time.Duration - RPCTxFeeCap float64 - OverrideCancun *uint64 `toml:",omitempty"` - OverrideVerkle *uint64 `toml:",omitempty"` + Genesis *core.Genesis `toml:",omitempty"` + NetworkId uint64 + SyncMode downloader.SyncMode + EthDiscoveryURLs []string + SnapDiscoveryURLs []string + NoPruning bool + NoPrefetch bool + TxLookupLimit uint64 `toml:",omitempty"` + RequiredBlocks map[uint64]common.Hash `toml:"-"` + LightServ int `toml:",omitempty"` + LightIngress int `toml:",omitempty"` + LightEgress int `toml:",omitempty"` + LightPeers int `toml:",omitempty"` + LightNoPrune bool `toml:",omitempty"` + LightNoSyncServe bool `toml:",omitempty"` + SkipBcVersionCheck bool `toml:"-"` + DatabaseHandles int `toml:"-"` + DatabaseCache int + DatabaseFreezer string + LevelDbCompactionTableSize uint64 + LevelDbCompactionTableSizeMultiplier float64 + LevelDbCompactionTotalSize uint64 + LevelDbCompactionTotalSizeMultiplier float64 + TrieCleanCache int + TrieDirtyCache int + TrieTimeout time.Duration + SnapshotCache int + Preimages bool + TriesInMemory uint64 + FilterLogCacheSize int + Miner miner.Config + TxPool legacypool.Config + BlobPool blobpool.Config + GPO gasprice.Config + EnablePreimageRecording bool + DocRoot string `toml:"-"` + RPCGasCap uint64 + RPCReturnDataLimit uint64 + RPCEVMTimeout time.Duration + RPCTxFeeCap float64 + OverrideCancun *uint64 `toml:",omitempty"` + HeimdallURL string + WithoutHeimdall bool + HeimdallgRPCAddress string + RunHeimdall bool + RunHeimdallArgs string + UseHeimdallApp bool + BorLogs bool + ParallelEVM core.ParallelEVMConfig `toml:",omitempty"` + DevFakeAuthor bool `hcl:"devfakeauthor,optional" toml:"devfakeauthor,optional"` + OverrideVerkle *uint64 `toml:",omitempty"` } - var enc Config enc.Genesis = c.Genesis enc.NetworkId = c.NetworkId @@ -75,11 +89,16 @@ func (c Config) MarshalTOML() (interface{}, error) { enc.DatabaseHandles = c.DatabaseHandles enc.DatabaseCache = c.DatabaseCache enc.DatabaseFreezer = c.DatabaseFreezer + enc.LevelDbCompactionTableSize = c.LevelDbCompactionTableSize + enc.LevelDbCompactionTableSizeMultiplier = c.LevelDbCompactionTableSizeMultiplier + enc.LevelDbCompactionTotalSize = c.LevelDbCompactionTotalSize + enc.LevelDbCompactionTotalSizeMultiplier = c.LevelDbCompactionTotalSizeMultiplier enc.TrieCleanCache = c.TrieCleanCache enc.TrieDirtyCache = c.TrieDirtyCache enc.TrieTimeout = c.TrieTimeout enc.SnapshotCache = c.SnapshotCache enc.Preimages = c.Preimages + enc.TriesInMemory = c.TriesInMemory enc.FilterLogCacheSize = c.FilterLogCacheSize enc.Miner = c.Miner enc.TxPool = c.TxPool @@ -88,9 +107,19 @@ func (c Config) MarshalTOML() (interface{}, error) { enc.EnablePreimageRecording = c.EnablePreimageRecording enc.DocRoot = c.DocRoot enc.RPCGasCap = c.RPCGasCap + enc.RPCReturnDataLimit = c.RPCReturnDataLimit enc.RPCEVMTimeout = c.RPCEVMTimeout enc.RPCTxFeeCap = c.RPCTxFeeCap enc.OverrideCancun = c.OverrideCancun + enc.HeimdallURL = c.HeimdallURL + enc.WithoutHeimdall = c.WithoutHeimdall + enc.HeimdallgRPCAddress = c.HeimdallgRPCAddress + enc.RunHeimdall = c.RunHeimdall + enc.RunHeimdallArgs = c.RunHeimdallArgs + enc.UseHeimdallApp = c.UseHeimdallApp + enc.BorLogs = c.BorLogs + enc.ParallelEVM = c.ParallelEVM + enc.DevFakeAuthor = c.DevFakeAuthor enc.OverrideVerkle = c.OverrideVerkle return &enc, nil } @@ -98,147 +127,152 @@ func (c Config) MarshalTOML() (interface{}, error) { // UnmarshalTOML unmarshals from TOML. func (c *Config) UnmarshalTOML(unmarshal func(interface{}) error) error { type Config struct { - Genesis *core.Genesis `toml:",omitempty"` - NetworkId *uint64 - SyncMode *downloader.SyncMode - EthDiscoveryURLs []string - SnapDiscoveryURLs []string - NoPruning *bool - NoPrefetch *bool - TxLookupLimit *uint64 `toml:",omitempty"` - RequiredBlocks map[uint64]common.Hash `toml:"-"` - LightServ *int `toml:",omitempty"` - LightIngress *int `toml:",omitempty"` - LightEgress *int `toml:",omitempty"` - LightPeers *int `toml:",omitempty"` - LightNoPrune *bool `toml:",omitempty"` - LightNoSyncServe *bool `toml:",omitempty"` - SkipBcVersionCheck *bool `toml:"-"` - DatabaseHandles *int `toml:"-"` - DatabaseCache *int - DatabaseFreezer *string - TrieCleanCache *int - TrieDirtyCache *int - TrieTimeout *time.Duration - SnapshotCache *int - Preimages *bool - FilterLogCacheSize *int - Miner *miner.Config - TxPool *legacypool.Config - BlobPool *blobpool.Config - GPO *gasprice.Config - EnablePreimageRecording *bool - DocRoot *string `toml:"-"` - RPCGasCap *uint64 - RPCEVMTimeout *time.Duration - RPCTxFeeCap *float64 - OverrideCancun *uint64 `toml:",omitempty"` - OverrideVerkle *uint64 `toml:",omitempty"` + Genesis *core.Genesis `toml:",omitempty"` + NetworkId *uint64 + SyncMode *downloader.SyncMode + EthDiscoveryURLs []string + SnapDiscoveryURLs []string + NoPruning *bool + NoPrefetch *bool + TxLookupLimit *uint64 `toml:",omitempty"` + RequiredBlocks map[uint64]common.Hash `toml:"-"` + LightServ *int `toml:",omitempty"` + LightIngress *int `toml:",omitempty"` + LightEgress *int `toml:",omitempty"` + LightPeers *int `toml:",omitempty"` + LightNoPrune *bool `toml:",omitempty"` + LightNoSyncServe *bool `toml:",omitempty"` + SkipBcVersionCheck *bool `toml:"-"` + DatabaseHandles *int `toml:"-"` + DatabaseCache *int + DatabaseFreezer *string + LevelDbCompactionTableSize *uint64 + LevelDbCompactionTableSizeMultiplier *float64 + LevelDbCompactionTotalSize *uint64 + LevelDbCompactionTotalSizeMultiplier *float64 + TrieCleanCache *int + TrieDirtyCache *int + TrieTimeout *time.Duration + SnapshotCache *int + Preimages *bool + TriesInMemory *uint64 + FilterLogCacheSize *int + Miner *miner.Config + TxPool *legacypool.Config + BlobPool *blobpool.Config + GPO *gasprice.Config + EnablePreimageRecording *bool + DocRoot *string `toml:"-"` + RPCGasCap *uint64 + RPCReturnDataLimit *uint64 + RPCEVMTimeout *time.Duration + RPCTxFeeCap *float64 + OverrideCancun *uint64 `toml:",omitempty"` + HeimdallURL *string + WithoutHeimdall *bool + HeimdallgRPCAddress *string + RunHeimdall *bool + RunHeimdallArgs *string + UseHeimdallApp *bool + BorLogs *bool + ParallelEVM *core.ParallelEVMConfig `toml:",omitempty"` + DevFakeAuthor *bool `hcl:"devfakeauthor,optional" toml:"devfakeauthor,optional"` + OverrideVerkle *uint64 `toml:",omitempty"` } - var dec Config if err := unmarshal(&dec); err != nil { return err } - if dec.Genesis != nil { c.Genesis = dec.Genesis } - if dec.NetworkId != nil { c.NetworkId = *dec.NetworkId } - if dec.SyncMode != nil { c.SyncMode = *dec.SyncMode } - if dec.EthDiscoveryURLs != nil { c.EthDiscoveryURLs = dec.EthDiscoveryURLs } - if dec.SnapDiscoveryURLs != nil { c.SnapDiscoveryURLs = dec.SnapDiscoveryURLs } - if dec.NoPruning != nil { c.NoPruning = *dec.NoPruning } - if dec.NoPrefetch != nil { c.NoPrefetch = *dec.NoPrefetch } - if dec.TxLookupLimit != nil { c.TxLookupLimit = *dec.TxLookupLimit } - if dec.RequiredBlocks != nil { c.RequiredBlocks = dec.RequiredBlocks } - if dec.LightServ != nil { c.LightServ = *dec.LightServ } - if dec.LightIngress != nil { c.LightIngress = *dec.LightIngress } - if dec.LightEgress != nil { c.LightEgress = *dec.LightEgress } - if dec.LightPeers != nil { c.LightPeers = *dec.LightPeers } - if dec.LightNoPrune != nil { c.LightNoPrune = *dec.LightNoPrune } - if dec.LightNoSyncServe != nil { c.LightNoSyncServe = *dec.LightNoSyncServe } if dec.SkipBcVersionCheck != nil { c.SkipBcVersionCheck = *dec.SkipBcVersionCheck } - if dec.DatabaseHandles != nil { c.DatabaseHandles = *dec.DatabaseHandles } - if dec.DatabaseCache != nil { c.DatabaseCache = *dec.DatabaseCache } - if dec.DatabaseFreezer != nil { c.DatabaseFreezer = *dec.DatabaseFreezer } - + if dec.LevelDbCompactionTableSize != nil { + c.LevelDbCompactionTableSize = *dec.LevelDbCompactionTableSize + } + if dec.LevelDbCompactionTableSizeMultiplier != nil { + c.LevelDbCompactionTableSizeMultiplier = *dec.LevelDbCompactionTableSizeMultiplier + } + if dec.LevelDbCompactionTotalSize != nil { + c.LevelDbCompactionTotalSize = *dec.LevelDbCompactionTotalSize + } + if dec.LevelDbCompactionTotalSizeMultiplier != nil { + c.LevelDbCompactionTotalSizeMultiplier = *dec.LevelDbCompactionTotalSizeMultiplier + } if dec.TrieCleanCache != nil { c.TrieCleanCache = *dec.TrieCleanCache } if dec.TrieDirtyCache != nil { c.TrieDirtyCache = *dec.TrieDirtyCache } - if dec.TrieTimeout != nil { c.TrieTimeout = *dec.TrieTimeout } - if dec.SnapshotCache != nil { c.SnapshotCache = *dec.SnapshotCache } - if dec.Preimages != nil { c.Preimages = *dec.Preimages } - + if dec.TriesInMemory != nil { + c.TriesInMemory = *dec.TriesInMemory + } if dec.FilterLogCacheSize != nil { c.FilterLogCacheSize = *dec.FilterLogCacheSize } - if dec.Miner != nil { c.Miner = *dec.Miner } @@ -251,32 +285,56 @@ func (c *Config) UnmarshalTOML(unmarshal func(interface{}) error) error { if dec.GPO != nil { c.GPO = *dec.GPO } - if dec.EnablePreimageRecording != nil { c.EnablePreimageRecording = *dec.EnablePreimageRecording } - if dec.DocRoot != nil { c.DocRoot = *dec.DocRoot } - if dec.RPCGasCap != nil { c.RPCGasCap = *dec.RPCGasCap } - + if dec.RPCReturnDataLimit != nil { + c.RPCReturnDataLimit = *dec.RPCReturnDataLimit + } if dec.RPCEVMTimeout != nil { c.RPCEVMTimeout = *dec.RPCEVMTimeout } - if dec.RPCTxFeeCap != nil { c.RPCTxFeeCap = *dec.RPCTxFeeCap } if dec.OverrideCancun != nil { c.OverrideCancun = dec.OverrideCancun } + if dec.HeimdallURL != nil { + c.HeimdallURL = *dec.HeimdallURL + } + if dec.WithoutHeimdall != nil { + c.WithoutHeimdall = *dec.WithoutHeimdall + } + if dec.HeimdallgRPCAddress != nil { + c.HeimdallgRPCAddress = *dec.HeimdallgRPCAddress + } + if dec.RunHeimdall != nil { + c.RunHeimdall = *dec.RunHeimdall + } + if dec.RunHeimdallArgs != nil { + c.RunHeimdallArgs = *dec.RunHeimdallArgs + } + if dec.UseHeimdallApp != nil { + c.UseHeimdallApp = *dec.UseHeimdallApp + } + if dec.BorLogs != nil { + c.BorLogs = *dec.BorLogs + } + if dec.ParallelEVM != nil { + c.ParallelEVM = *dec.ParallelEVM + } + if dec.DevFakeAuthor != nil { + c.DevFakeAuthor = *dec.DevFakeAuthor + } if dec.OverrideVerkle != nil { c.OverrideVerkle = dec.OverrideVerkle } - return nil }