temporarily moved old projects into old directory

This commit is contained in:
Michael George
2022-05-06 13:21:36 -04:00
parent cca337f5ae
commit 4a3cddc529
18 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,23 @@
if [ -z "$2" ]
then
echo "Incorrect number of arguments"
echo ""
echo "Usage: (from git root)"
echo " ./certora/scripts/`basename $0` [message describing the run] [rule or invariant]"
echo ""
exit 1
fi
rule=$1
msg=$2
shift 2
certoraRun \
certora/harnesses/ERC20VotesHarness.sol \
--verify ERC20VotesHarness:certora/specs/ERC20Votes.spec \
--solc solc8.2 \
--optimistic_loop \
--rule ${rule} \
--msg "${msg}" \
--staging "alex/new-dt-hashing-alpha" \
# --rule_sanity \