Skip to content

Commit

Permalink
fix: dumpconfig failing to unmarshal nil BuilderTxSigningKey (ethereu…
Browse files Browse the repository at this point in the history
  • Loading branch information
fnerdman authored Apr 5, 2023
1 parent 96ac902 commit 470a183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miner/miner.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ type Config struct {
AlgoType AlgoType // Algorithm to use for block building
Recommit time.Duration // The time interval for miner to re-create mining work.
Noverify bool // Disable remote mining solution verification(only useful in ethash).
BuilderTxSigningKey *ecdsa.PrivateKey // Signing key of builder coinbase to make transaction to validator
BuilderTxSigningKey *ecdsa.PrivateKey `toml:",omitempty"` // Signing key of builder coinbase to make transaction to validator
MaxMergedBundles int
Blocklist []common.Address `toml:",omitempty"`
NewPayloadTimeout time.Duration // The maximum time allowance for creating a new payload
Expand Down

0 comments on commit 470a183

Please sign in to comment.