Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Rodygin committed Nov 2, 2023
1 parent 4399e36 commit c9d38ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions miner/miner.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ type Backend interface {

// Config is the configuration parameters of mining.
type Config struct {
Validator common.Address `toml:",omitempty"` // Public address for block signing and randomness (default = first account)
ExtraData hexutil.Bytes `toml:",omitempty"` // Block extra data set by the miner
FeeCurrencyDefault float64 // Default fraction of block gas limit
Validator common.Address `toml:",omitempty"` // Public address for block signing and randomness (default = first account)
ExtraData hexutil.Bytes `toml:",omitempty"` // Block extra data set by the miner
FeeCurrencyDefault float64 // Default fraction of block gas limit
FeeCurrencyLimits map[common.Address]float64 // Fee currency-to-limit fraction mapping
}

Expand Down

0 comments on commit c9d38ab

Please sign in to comment.