Skip to content

Commit

Permalink
Use an absolute path for the DB
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve committed May 13, 2024
1 parent 3419921 commit bfc6745
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/setup-coins/litecoin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ popd

./litecoin-node/bin/litecoind -regtest -daemon -server=1 -txindex=1 -prune=0 -rpcport=19443 -rpcuser=ci -rpcpassword=password

mkdir -p ~/electrumx/db
chmod 777 -R ~/electrumx/db
COIN=Litecoin DB_DIRECTORY="~/electrumx/db" DAEMON_URL="ci:[email protected]:19443" SERVICES="tcp://127.0.0.1:5000" PEER_DISCOVERY=self ./electrumx/venv/bin/python3 ./electrumx/electrumx_server &
mkdir -p /var/electrumx/db
chmod 777 -R /var/electrumx/db
COIN=Litecoin DB_DIRECTORY="/var/electrumx/db" DAEMON_URL="ci:[email protected]:19443" SERVICES="tcp://127.0.0.1:5000" PEER_DISCOVERY=self ./electrumx/venv/bin/python3 ./electrumx/electrumx_server &
sleep 1

./electrum-ltc/run_electrum --offline setconfig rpcport 3000
Expand Down

0 comments on commit bfc6745

Please sign in to comment.