Revision 974da4819e9255a0f00be545179b10a0017482f0 authored by Raphaƫl Cauderlier on 23 July 2019, 12:10:04 UTC, committed by Pierre Boutillier on 21 October 2019, 12:25:35 UTC
The semantics of the STEPS_TO_QUOTA instruction changes each time the
gas constants are modified to better reflect the real costs.

Moreover, because of STEPS_TO_QUOTA, the interpreter is not monotonic:
it is easy to write a contract that runs successfully at some gas
amount but fails when more gas is given.
1 parent 22d2fa7
Raw File
check_patch.sh
#! /bin/sh

set -e

if [ $1 != "zeronet" ] && [ $1 != "alphanet" ] ; then
    echo Ignored
    exit 0
fi

if git log | grep "net: change economic constants" >/dev/null 2>&1 ; then
    echo OK
    exit 0
fi

cat <<EOF

The branch $1 should include the constant patch.
Please run './scripts/apply-patch.sh $1'.

EOF

exit 1
back to top