Skip to content

Commit

Permalink
fix: certotra syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
DhairyaSethi committed Nov 4, 2024
1 parent 4cbf33a commit 93b0f93
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((bytes calldata,uint64,address,uint256,address)).selector;
f.selector==sig:lockOrBurn(Pool.LockOrBurnInV1).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((bytes calldata,uint64,address,uint256,address,bytes calldata,bytes calldata,bytes calldata)).selector;
f.selector==sig:releaseOrMint(Pool.ReleaseOrMintInV1).selector;
}
Expand Down

0 comments on commit 93b0f93

Please sign in to comment.