Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaSripal committed Nov 19, 2024
1 parent a9197de commit 90a1dd5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/core/v2/ics-004-channel-and-packet-semantics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ function sendPacket(
// these will include the packet identifier so they can be indexed and
// reconstructed by relayers
for i, payload in payloads {
emitLongEntry("send_payload", {
emitEvents("send_payload", {
sourceChannel: sourceChannelId,
destChannel: channel.counterpartyChannelId,
sequence: sequence, // value is string in decimal format
Expand Down Expand Up @@ -752,7 +752,7 @@ function recvPacket(
// these will include the packet identifier so they can be indexed and
// reconstructed by relayers
for i, payload in payloads {
emitLongEntry("recv_payload", {
emitEvents("recv_payload", {
sourceChannel: sourceChannelId,
destChannel: channel.counterpartyChannelId,
sequence: sequence, // value is string in decimal format
Expand Down Expand Up @@ -847,7 +847,7 @@ function writeAcknowledgement(
// these will include the packet identifier so they can be indexed and
// reconstructed by relayers
for i, payload in payloads {
emitLongEntry("recv_payload", {
emitEvents("recv_payload", {
sourceChannel: sourceChannelId,
destChannel: channel.counterpartyChannelId,
sequence: sequence, // value is string in decimal format
Expand Down

0 comments on commit 90a1dd5

Please sign in to comment.