Skip to content

Commit

Permalink
Initialize senderChain in Celer adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominator008 committed Sep 13, 2023
1 parent 5688add commit 5013461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adapters/Celer/CelerReceiverAdapter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ contract CelerReceiverAdapter is IBridgeReceiverAdapter, IMessageReceiverApp {
string public constant name = "celer";
address public immutable msgBus;
IGAC public immutable gac;
uint64 public immutable senderChain = 1; // Ethereum

/*/////////////////////////////////////////////////////////////////
STATE VARIABLES
////////////////////////////////////////////////////////////////*/

/// @dev adapter deployed to Ethereum
address public senderAdapter;
uint64 public senderChain;

/// @dev tracks the msg id status to prevent replay
mapping(bytes32 => bool) public isMessageExecuted;
Expand Down

0 comments on commit 5013461

Please sign in to comment.