From 90a1dd52112f0c159cdf2e9d23151c7dca447ca1 Mon Sep 17 00:00:00 2001 From: Aditya Sripal <14364734+AdityaSripal@users.noreply.github.com> Date: Tue, 19 Nov 2024 13:33:43 +0100 Subject: [PATCH] fix typo --- spec/core/v2/ics-004-channel-and-packet-semantics/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/core/v2/ics-004-channel-and-packet-semantics/README.md b/spec/core/v2/ics-004-channel-and-packet-semantics/README.md index d44207aab..8ab7fedaa 100644 --- a/spec/core/v2/ics-004-channel-and-packet-semantics/README.md +++ b/spec/core/v2/ics-004-channel-and-packet-semantics/README.md @@ -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 @@ -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 @@ -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