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: packet_sequence is not indexed in relayer event #1318

Merged
merged 14 commits into from
Feb 19, 2024
Prev Previous commit
Next Next commit
index recv_packet
  • Loading branch information
mmsqe committed Feb 19, 2024
commit ed9d24bad73cc59da04a11937282bd58577ef172
10 changes: 9 additions & 1 deletion x/cronos/events/bindings/src/Relayer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,15 @@ interface IRelayerModule {
string sender;
Cosmos.Coin[] amount;
}
event RecvPacket(PacketData packetDataHex);
event RecvPacket(
string indexed packetSequence,
string indexed packetSrcPort,
string indexed packetSrcChannel,
string packetDstPort,
string packetDstChannel,
string connectionId,
PacketData packetDataHex
);
event WriteAcknowledgement(
string indexed packetSequence,
string indexed packetSrcPort,
Expand Down