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

This commit is contained in:
ucwong
2022-08-19 09:01:43 +03:00
committed by GitHub
parent fa1305f8bf
commit 32e8490615
+1 -1
View File
@@ -609,7 +609,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)
}