Skip to content

Commit

Permalink
Fix formatting in IJsonRpcConfig and GasPriceOracle classes
Browse files Browse the repository at this point in the history
  • Loading branch information
gr8h committed Jan 26, 2024
1 parent d836627 commit f089e1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Nethermind/Nethermind.JsonRpc/IJsonRpcConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public interface IJsonRpcConfig : IConfig
[ConfigItem(
Description = "Set a lower limit for GetGasPriceEstimate. This ensure rpc calls to eth_gasPrice are never below the limit set by MiningConfig.MinGasPrice",
DefaultValue = "false")]
bool UseMinGasPriceInEstimates { get; set; }
bool UseMinGasPriceInEstimates { get; set; }

[ConfigItem(
Description = """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public GasPriceOracle(
_blockFinder = blockFinder;
_logger = logManager.GetClassLogger();
_minGasPrice = minGasPrice ?? new BlocksConfig().MinGasPrice;
_UseMinGasPrice = useMinGasPrice;
_UseMinGasPrice = useMinGasPrice;
SpecProvider = specProvider;
}

Expand Down

0 comments on commit f089e1d

Please sign in to comment.