https://gitlab.com/tezos/tezos
Raw File
Tip revision: b3d6c85b50d4c412f337df2daced7ffa8e1ef958 authored by Julien Coolen on 07 April 2023, 12:46:44 UTC
Compiles
Tip revision: b3d6c85
patch-yes_node.sh
#!/bin/sh

# 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

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

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