Skip to content

Commit

Permalink
fix: ccip spec tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
DhairyaSethi committed Nov 2, 2024
1 parent ec766c2 commit 1d0afe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions certora/specs/ccip.spec
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ rule only_lockOrBurn_can_increase_currentBridged(env e) {

assert
curr_bridge_after > curr_bridge_before =>
f.selector==sig:lockOrBurn(tuple(bytes calldata,uint64,address,uint256,address)).selector;
f.selector==sig:lockOrBurn((bytes calldata,uint64,address,uint256,address)).selector;
}


Expand All @@ -102,7 +102,7 @@ rule only_releaseOrMint_can_decrease_currentBridged(env e) {

assert
curr_bridge_after < curr_bridge_before =>
f.selector==sig:releaseOrMint(tuple(bytes calldata,uint64,address,uint256,address,bytes calldata,bytes calldata,bytes calldata)).selector;
f.selector==sig:releaseOrMint((bytes calldata,uint64,address,uint256,address,bytes calldata,bytes calldata,bytes calldata)).selector;
}


Expand Down

0 comments on commit 1d0afe9

Please sign in to comment.