Skip to content

Commit

Permalink
fix toml marshalisation with pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
baptiste-b-pegasys committed Oct 5, 2022
1 parent 3956156 commit b5b4b52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions consensus/istanbul/config.go
Expand Up @@ -136,9 +136,9 @@ type Config struct {
BeneficiaryList []common.Address `toml:",omitempty"` // List of wallet addresses that have benefit at every new block (list mode)
MiningBeneficiary *common.Address `toml:",omitempty"` // Wallet address that benefits at every new block (besu mode)
Transitions []params.Transition
ValidatorContract common.Address
Validators []common.Address
ValidatorSelectionMode *string
ValidatorContract common.Address `toml:",omitempty"`
Validators []common.Address `toml:",omitempty"`
ValidatorSelectionMode *string `toml:",omitempty"`
Client bind.ContractCaller `toml:",omitempty"`
}

Expand Down

0 comments on commit b5b4b52

Please sign in to comment.