Skip to content

Commit

Permalink
ethclient/simulated: fix typo (#28952)
Browse files Browse the repository at this point in the history
(ethclient/simulated):fix typo
  • Loading branch information
bodhi-crypo authored Feb 8, 2024
1 parent 2ab365f commit 2dc33d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethclient/simulated/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func WithCallGasLimit(gaslimit uint64) func(nodeConf *node.Config, ethConf *ethc
// gas tip for a transaction to be included.
//
// 0 is not possible as a live Geth node would reject that due to DoS protection,
// so the simulated backend will replicate that behavior for consisntency.
// so the simulated backend will replicate that behavior for consistency.
func WithMinerMinTip(tip *big.Int) func(nodeConf *node.Config, ethConf *ethconfig.Config) {
if tip == nil || tip.Cmp(new(big.Int)) <= 0 {
panic("invalid miner minimum tip")
Expand Down

0 comments on commit 2dc33d4

Please sign in to comment.