From f14554ee9dca1bd2049e7ba89eb4b87412c448a7 Mon Sep 17 00:00:00 2001 From: Evaldas Latoskinas Date: Tue, 2 Jul 2024 18:22:37 +0200 Subject: [PATCH] fix: typo --- contracts/src/v0.8/ccip/libraries/Internal.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/src/v0.8/ccip/libraries/Internal.sol b/contracts/src/v0.8/ccip/libraries/Internal.sol index 599151d6c7..6dbe4e1130 100644 --- a/contracts/src/v0.8/ccip/libraries/Internal.sol +++ b/contracts/src/v0.8/ccip/libraries/Internal.sol @@ -251,7 +251,7 @@ library Internal { /// The messageId is not expected to match hash(message), since it may originate from another ramp family // TODO: revisit if destChainSelector is required (likely sufficient to have it implicitly in the commit roots) struct RampMessageHeader { - bytes32 messageId; // Unique identifier for the message, generated with the source chain's encoding sdcheme (i.e. not necessarily abi.encoded) + bytes32 messageId; // Unique identifier for the message, generated with the source chain's encoding scheme (i.e. not necessarily abi.encoded) uint64 sourceChainSelector; // ───────╮ the chain selector of the source chain, note: not chainId uint64 destChainSelector; // | the chain selector of the destination chain, note: not chainId uint64 sequenceNumber; // │ sequence number, not unique across lanes