Skip to content

Commit

Permalink
fix: temporarily change SP GasLimit to 120 to match the mainnet chain…
Browse files Browse the repository at this point in the history
… setting
  • Loading branch information
ruojunm committed Apr 29, 2024
1 parent cfe6d3f commit 1be658b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modular/signer/signer_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

Expand Down

0 comments on commit 1be658b

Please sign in to comment.