https://gitlab.com/tezos/tezos
Raw File
Tip revision: b6b7dc01c9791f2833c826d704872b451575c05a authored by Thomas Letan on 07 April 2023, 06:54:38 UTC
Docs: Remove the banner about tezos- to octez- move
Tip revision: b6b7dc0
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