Skip to content

Commit

Permalink
internal/ethapi: fix comment typo (ethereum#25548)
Browse files Browse the repository at this point in the history
  • Loading branch information
ucwong authored and HanWang233 committed Sep 11, 2022
1 parent 7dd1632 commit 296c27f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ethapi/transaction_args.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ func (args *TransactionArgs) ToMessage(globalGasCap uint64, baseFee *big.Int) (t
gasPrice = args.GasPrice.ToInt()
gasFeeCap, gasTipCap = gasPrice, gasPrice
} else {
// User specified 1559 gas feilds (or none), use those
// User specified 1559 gas fields (or none), use those
gasFeeCap = new(big.Int)
if args.MaxFeePerGas != nil {
gasFeeCap = args.MaxFeePerGas.ToInt()
Expand Down

0 comments on commit 296c27f

Please sign in to comment.