https://gitlab.com/tezos/tezos
Raw File
Tip revision: 8d09ae3c59833f94f86427ff3715d73ec32d3e9e authored by Pierrick Couderc on 01 September 2022, 11:44:07 UTC
WASM/Test: move `unreachable` and `computation` kernels in lib_wasm_kernels
Tip revision: 8d09ae3
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