Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit 470a183

Browse files
authored
fix: dumpconfig failing to unmarshal nil BuilderTxSigningKey (#42)
1 parent 96ac902 commit 470a183

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

miner/miner.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ type Config struct {
7878
AlgoType AlgoType // Algorithm to use for block building
7979
Recommit time.Duration // The time interval for miner to re-create mining work.
8080
Noverify bool // Disable remote mining solution verification(only useful in ethash).
81-
BuilderTxSigningKey *ecdsa.PrivateKey // Signing key of builder coinbase to make transaction to validator
81+
BuilderTxSigningKey *ecdsa.PrivateKey `toml:",omitempty"` // Signing key of builder coinbase to make transaction to validator
8282
MaxMergedBundles int
8383
Blocklist []common.Address `toml:",omitempty"`
8484
NewPayloadTimeout time.Duration // The maximum time allowance for creating a new payload

0 commit comments

Comments
 (0)