You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
568 B
26 lines
568 B
3 years ago
|
make -C certora munged
|
||
|
|
||
|
if [ -z "$1" ]
|
||
|
then
|
||
|
echo "Incorrect number of arguments"
|
||
|
echo ""
|
||
|
echo "Usage: (from git root)"
|
||
|
echo " ./certora/scripts/`basename $0` [message describing the run]"
|
||
|
echo ""
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
msg=$1
|
||
|
shift 1
|
||
|
|
||
3 years ago
|
certoraRun \
|
||
|
certora/harnesses/ERC20VotesHarness.sol \
|
||
|
--verify ERC20VotesHarness:certora/specs/ERC20Votes.spec \
|
||
|
--solc solc8.2 \
|
||
3 years ago
|
--disableLocalTypeChecking \
|
||
3 years ago
|
--optimistic_loop \
|
||
3 years ago
|
--settings -copyLoopUnroll=4 \
|
||
|
--send_only \
|
||
3 years ago
|
--staging "alex/new-dt-hashing-alpha" \
|
||
|
--msg "${msg}" \
|