From 1be658b1132a79ed9fe8350e267f348001e8ce44 Mon Sep 17 00:00:00 2001 From: Ruojun Meng Date: Mon, 29 Apr 2024 16:08:54 +0800 Subject: [PATCH] fix: temporarily change SP GasLimit to 120 to match the mainnet chain setting --- modular/signer/signer_client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular/signer/signer_client.go b/modular/signer/signer_client.go index 90fac1b85..14c816a96 100644 --- a/modular/signer/signer_client.go +++ b/modular/signer/signer_client.go @@ -1258,8 +1258,8 @@ func (client *GreenfieldChainSignClient) SealObjectV2(ctx context.Context, scope txOpt := &ctypes.TxOption{ NoSimulate: true, Mode: &mode, - GasLimit: client.gasInfo[Seal].GasLimit, - FeeAmount: client.gasInfo[Seal].FeeAmount, + GasLimit: 120, // we temporarily set it 120 to match the mainnet setting and will change it back once a new proposal to change the GasLimit is applied in mainnet later. + FeeAmount: sdk.NewCoins(sdk.NewCoin(ctypes.Denom, sdk.NewInt(int64(600000000000)))), Nonce: nonce, }