From 3f4e283586164c0eb0cc155078d0d1df7261eec4 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Mon, 13 May 2024 05:29:18 -0400 Subject: [PATCH] Correct venv paths --- ci/setup-coins/litecoin.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/setup-coins/litecoin.sh b/ci/setup-coins/litecoin.sh index 12835c5..0bea525 100755 --- a/ci/setup-coins/litecoin.sh +++ b/ci/setup-coins/litecoin.sh @@ -15,7 +15,7 @@ python3 -m pip install virtualenv git clone --depth 1 'https://github.com/spesmilo/electrumx' pushd electrumx virtualenv venv -./venv/python3 -m pip install -e . +./venv/bin/python3 -m pip install -e . popd git clone --depth 1 'https://github.com/pooler/electrum-ltc' @@ -26,7 +26,7 @@ popd ./litecoin-node/bin/litecoind -regtest -daemon -server=1 -txindex=1 -prune=0 -rpcport=19443 -rpcuser=ci -rpcpassword=password mkdir -p ~/electrumx/db -COIN=Litecoin DB_DIRECTORY="~/electrumx/db" DAEMON_URL="ci:password@127.0.0.1:19443" SERVICES="tcp://127.0.0.1:5000" PEER_DISCOVERY=self ./electrumx/venv/python3 ./electrumx/electrumx_server & +COIN=Litecoin DB_DIRECTORY="~/electrumx/db" DAEMON_URL="ci:password@127.0.0.1:19443" SERVICES="tcp://127.0.0.1:5000" PEER_DISCOVERY=self ./electrumx/venv/bin/python3 ./electrumx/electrumx_server & ./electrum-ltc/run_electrum --offline setconfig rpcport 3000 ./electrum-ltc/run_electrum --offline setconfig rpcuser ci ./electrum-ltc/run_electrum --offline setconfig rpcpassword password