Skip to content

Commit

Permalink
Enforce Arbiter as caller for MultiChainClaim
Browse files Browse the repository at this point in the history
  • Loading branch information
vimageDE committed Jan 30, 2025
1 parent 6fea27c commit cfff6dc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/core/lib/TheCompactLogic.sol
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,9 @@ contract TheCompactLogic {
}
compact = compacts[i].compact;
index = i;
if(msg.sender != compact.arbiter) {
revert Errors.NotArbiter(msg.sender, compact.arbiter);
}
}
}
if(compact.sponsor == address(0)) {
Expand Down

0 comments on commit cfff6dc

Please sign in to comment.