Revision 932b4a7ba6fef4ada63dcff24c528030c3368a6e authored by Joel Bjornson on 09 December 2022, 17:16:40 UTC, committed by Joel Bjornson on 12 December 2022, 17:57:52 UTC
1 parent 7ae046c
Raw File
patch-yes_node.sh
#!/bin/sh

# Exit on non-zero status
set -e

# Patch the node sources:
# - the cryptographic library to use fake secret keys,
# - the stresstest command of each protocol that is not frozen to make it works
#   on mainnet

for arg in "$@"
do
    case $arg in
        "--dry-run" )
           dry_run='--dry-run'
   esac
done

patch $dry_run -p 1 < scripts/yes-node.patch

for f in src/proto_*/lib_client_commands/client_proto_stresstest_commands.ml
do
  patch $dry_run -p 1 "$f" < scripts/yes-stresstest.patch
done
back to top