Skip to content

Commit b51ffef

Browse files
committed
format sol files
1 parent 3b67923 commit b51ffef

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

public/samples/CCIP/MessageTracker.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ contract MessageTracker is CCIPReceiver, OwnerIsCreator {
8181

8282
// Event emitted when the sender contract receives an acknowledgment
8383
// that the receiver contract has successfully received and processed the message.
84-
// The unique ID of the message acknowledged by the receiver.
85-
// The chain selector of the source chain.
86-
// The address of the sender from the source chain.
8784
event MessageProcessedOnDestination( // The unique ID of the CCIP acknowledgment message.
85+
// The unique ID of the message acknowledged by the receiver.
86+
// The chain selector of the source chain.
87+
// The address of the sender from the source chain.
8888
bytes32 indexed messageId,
8989
bytes32 indexed acknowledgedMsgId,
9090
uint64 indexed sourceChainSelector,

public/samples/CCIP/Messenger.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ contract Messenger is CCIPReceiver, OwnerIsCreator {
4747
);
4848

4949
// Event emitted when a message is received from another chain.
50-
// The chain selector of the source chain.
51-
// The address of the sender from the source chain.
52-
// The text that was received.
5350
event MessageReceived( // The unique ID of the CCIP message.
51+
// The chain selector of the source chain.
52+
// The address of the sender from the source chain.
53+
// The text that was received.
5454
bytes32 indexed messageId,
5555
uint64 indexed sourceChainSelector,
5656
address sender,

public/samples/CCIP/Receiver.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ import {Client} from "@chainlink/contracts-ccip/contracts/libraries/Client.sol";
1313
/// @title - A simple contract for receiving string data across chains.
1414
contract Receiver is CCIPReceiver {
1515
// Event emitted when a message is received from another chain.
16-
// The chain selector of the source chain.
17-
// The address of the sender from the source chain.
18-
// The text that was received.
1916
event MessageReceived( // The unique ID of the message.
17+
// The chain selector of the source chain.
18+
// The address of the sender from the source chain.
19+
// The text that was received.
2020
bytes32 indexed messageId,
2121
uint64 indexed sourceChainSelector,
2222
address sender,

0 commit comments

Comments
 (0)