Revision c2b8c4e4f1f3be2cc10013b09866a6043b108337 authored by Thomas Letan on 09 August 2023, 12:04:50 UTC, committed by Marge Bot on 10 August 2023, 18:56:17 UTC
It is now completety superseded by the `profile' command.
1 parent 7c3d066
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 work
#   on Tezos 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