Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem: require gas in relayer precompile is higher than consumed #1232

Merged
merged 10 commits into from
Nov 6, 2023
Prev Previous commit
Next Next commit
fix recvPacket
  • Loading branch information
mmsqe committed Nov 6, 2023
commit 32f392bac16a483cdf7526f711962f7737d7edc0
2 changes: 1 addition & 1 deletion x/cronos/keeper/precompiles/relayer.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func init() {
relayerGasRequiredByMethod[prefixChannelOpenTry] = 70562
relayerGasRequiredByMethod[prefixChannelOpenAck] = 22127
relayerGasRequiredByMethod[prefixChannelOpenConfirm] = 21190
relayerGasRequiredByMethod[prefixRecvPacket] = 144925
relayerGasRequiredByMethod[prefixRecvPacket] = 144025
relayerGasRequiredByMethod[prefixAcknowledgement] = 61781
relayerGasRequiredByMethod[prefixTimeout] = 104283
relayerGasRequiredByMethod[prefixTimeoutOnClose] = 100000
Expand Down