Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Oct 28, 2024
1 parent 57dfff6 commit 18a7dc2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions integration_tests/ibc_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,8 +480,8 @@ def ibc_incentivized_transfer(ibc):
print("packet event", evt)
packet_seq = int(evt["packet_sequence"])
recv_fee = 10
ack_fee = 11
timeout_fee = 12
ack_fee = 10
timeout_fee = 10
rsp = chains[0].pay_packet_fee(
"transfer",
src_channel,
Expand Down
4 changes: 3 additions & 1 deletion x/cronos/keeper/precompiles/relayer.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ func init() {
relayerGasRequiredByMethod[methodID] = 61781
case Timeout:
relayerGasRequiredByMethod[methodID] = 104283
case RegisterPayee, RegisterCounterpartyPayee:
case RegisterPayee:
relayerGasRequiredByMethod[methodID] = 39000
case RegisterCounterpartyPayee:
relayerGasRequiredByMethod[methodID] = 40000
default:
relayerGasRequiredByMethod[methodID] = 100000
Expand Down

0 comments on commit 18a7dc2

Please sign in to comment.