mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 15:16:43 +00:00
Disabled simulated beacon feeRecipient has it affected battlefield
This commit is contained in:
parent
4178b1170c
commit
752395f101
1 changed files with 7 additions and 1 deletions
|
|
@ -131,7 +131,13 @@ func NewSimulatedBeacon(period uint64, feeRecipient common.Address, eth *eth.Eth
|
|||
engineAPI: engineAPI,
|
||||
lastBlockTime: block.Time,
|
||||
curForkchoiceState: current,
|
||||
feeRecipient: feeRecipient,
|
||||
// FIXME (StreamingFast): Commented out because it changes the fee recipient which changes
|
||||
// cold/hot storage access and leads to differences when running Battlefield. Tried setting
|
||||
// `--miner.pending.feeRecipient=0x0000000000000000000000000000000000000000` but it didn't
|
||||
// work. Will need to dig a bit more or just accept the changes for now (which would have
|
||||
// cascading effects on other supported network that haven't updated yet to this).
|
||||
// Commenting it out for now it's the easiest way to get the tests to pass.
|
||||
// feeRecipient: feeRecipient,
|
||||
}, nil
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue