From c9d38abea63797c1f59c34e3928b1d46ab015045 Mon Sep 17 00:00:00 2001 From: Valentin Rodygin Date: Thu, 2 Nov 2023 15:23:00 +0100 Subject: [PATCH] Linting --- miner/miner.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/miner/miner.go b/miner/miner.go index a87faf0aa5..939eb5b73e 100644 --- a/miner/miner.go +++ b/miner/miner.go @@ -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 }