From ba770dda2a19a4d5b3b6f345577abc32abf5f246 Mon Sep 17 00:00:00 2001 From: Robert Zaremba Date: Thu, 18 Jan 2024 19:19:13 +0100 Subject: [PATCH] fix: prevote gas allocation --- oracle/client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oracle/client/client.go b/oracle/client/client.go index 4240691..2a2a847 100644 --- a/oracle/client/client.go +++ b/oracle/client/client.go @@ -288,7 +288,7 @@ func (oc OracleClient) CreateTxFactory(isPrevote bool) (tx.Factory, error) { } gas := oc.GasVote if isPrevote { - gas = oc.GasVote + gas = oc.GasPrevote } return tx.Factory{}. WithAccountRetriever(clientCtx.AccountRetriever).