https://gitlab.com/tezos/tezos
Raw File
Tip revision: 7f95c3bde0980420ebf1462a2f8b664495193842 authored by Hai Nguyen Van on 11 April 2022, 15:05:45 UTC
Docs: Figures for the proof-of-stake section
Tip revision: 7f95c3b
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