From 4976dcef0dcffd6c4231370da062f468b5ae9a53 Mon Sep 17 00:00:00 2001 From: nicolas <48695862+merklefruit@users.noreply.github.com> Date: Mon, 9 Sep 2024 15:17:10 +0200 Subject: [PATCH] fix(devnet): avoid deploying deprecated contracts --- scripts/start-devnet.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/scripts/start-devnet.sh b/scripts/start-devnet.sh index 3c9874b8..8d77e4cf 100755 --- a/scripts/start-devnet.sh +++ b/scripts/start-devnet.sh @@ -16,10 +16,11 @@ while ! curl -s -X POST --data '{"jsonrpc":"2.0","method":"eth_blockNumber","par sleep 1 done +# TODO: re-add after new registry, challenger and staking contracts are available # deploy the contracts -( - cd ./bolt-contracts || exit - forge build # make sure the contracts are compiled before deploying - forge script script/DeployOnDevnet.s.sol --broadcast --rpc-url "$RPC" --private-key "$PK" -) -echo "Contracts deployed!" +# ( +# cd ./bolt-contracts || exit +# forge build # make sure the contracts are compiled before deploying +# forge script script/DeployOnDevnet.s.sol --broadcast --rpc-url "$RPC" --private-key "$PK" +# ) +# echo "Contracts deployed!"