accounts/abi/bind/backends: typo fix (#25549)

This commit is contained in:
Daniel Liu 2025-01-14 10:56:14 +08:00
parent c046f36afd
commit b6be9c181c

View file

@ -659,7 +659,7 @@ func (b *SimulatedBackend) callContract(ctx context.Context, call ethereum.CallM
// User specified the legacy gas field, convert to 1559 gas typing
call.GasFeeCap, call.GasTipCap = call.GasPrice, call.GasPrice
} else {
// User specified 1559 gas feilds (or none), use those
// User specified 1559 gas fields (or none), use those
if call.GasFeeCap == nil {
call.GasFeeCap = new(big.Int)
}