mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
11 lines
492 B
Bash
Executable File
11 lines
492 B
Bash
Executable File
#!/bin/bash
|
|
echo "DANGER! This will nuke your bitcoin regtest dir and bisq seed, alice and bob regtest dirs as well!"
|
|
echo "Press Enter to continue, otherwise ctrl+c"
|
|
read
|
|
rm blocks regtest -rf
|
|
rm ~/.local/share/bisq-BTC_REGTEST_Seed_2002 -rf
|
|
rm ~/.local/share/bisq-BTC_REGTEST_Alice -rf
|
|
rm ~/.local/share/bisq-BTC_REGTEST_Bob -rf
|
|
sed -r -i 's/dao=.*/dao="false"/' bisq/config.sh
|
|
echo "cleaned bitcoind home and bisq seed, alice, bob instances. The conf file for bisq was reset to dao=false"
|