Skip to content

Commit

Permalink
refactor(evm): mv event position within ConnextReporter
Browse files Browse the repository at this point in the history
  • Loading branch information
allemanfredi committed Jan 24, 2024
1 parent dd8d57a commit f424603
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ contract ConnextReporter is Reporter, Ownable {
IConnext public immutable CONNEXT;

mapping(uint256 => uint32) public domainIds;
event ConnextTransfer(bytes32 transferId);

error DomainIdNotAvailable();

event DomainIdSet(uint256 indexed chainId, uint32 indexed domainId);
event ConnextTransfer(bytes32 transferId);

constructor(address headerStorage, address yaho, address connext) Reporter(headerStorage, yaho) {
CONNEXT = IConnext(connext);
Expand Down

0 comments on commit f424603

Please sign in to comment.