From bfb9943af35942426ea80fcd4dfbfd185312d254 Mon Sep 17 00:00:00 2001 From: Ramiro Carlucho Date: Wed, 4 Aug 2021 13:10:08 -0300 Subject: [PATCH] fix fee value (#396) --- ethereum/rpc/namespaces/miner/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/rpc/namespaces/miner/api.go b/ethereum/rpc/namespaces/miner/api.go index 936b5d00..5041dc25 100644 --- a/ethereum/rpc/namespaces/miner/api.go +++ b/ethereum/rpc/namespaces/miner/api.go @@ -105,7 +105,7 @@ func (api *API) SetEtherbase(etherbase common.Address) bool { WithKeybase(api.ethAPI.ClientCtx().Keyring). WithTxConfig(api.ethAPI.ClientCtx().TxConfig). WithSequence(uint64(*nonce)). - WithGasAdjustment(1.11) + WithGasAdjustment(1.25) _, gas, err := tx.CalculateGas(api.ethAPI.ClientCtx(), txFactory, msg) if err != nil {