From fd5263ffc426cb2aa9e929103ecf2337b4228bfc Mon Sep 17 00:00:00 2001 From: Xiaozhou Li Date: Sun, 7 Apr 2024 12:51:19 -0700 Subject: [PATCH] fix typo --- eth/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/options.go b/eth/options.go index bf6f77c..b06cca6 100644 --- a/eth/options.go +++ b/eth/options.go @@ -143,7 +143,7 @@ func WithAddPriorityFeePerGasGwei(g float64) TxOption { }) } -func WithAddGassFeeRatio(r float64) TxOption { +func WithAddGasFeeRatio(r float64) TxOption { return newFuncTxOption(func(o *txOptions) { o.addGasFeeRatio = r })