Revision 247c3bc885f133cb1e7437295ce0edf922c4567c authored by Diane Gallois-Wong on 01 September 2022, 13:15:45 UTC, committed by Marge Bot on 06 September 2022, 08:21:04 UTC
to cover cases that used to be tested in the plugin tests, which
have been removed by the previous commit.
1 parent 322c733
Raw File
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