From d6ea571eee6bd4f1f6f122b3cb91fe2c04562c11 Mon Sep 17 00:00:00 2001 From: Taylor Helsper Date: Thu, 7 Apr 2022 22:08:53 -0500 Subject: [PATCH] Resolve possible issue with bitcoin crashing due to wallet creation --- rootfs/standard/usr/bin/service_post/post_bitcoin.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rootfs/standard/usr/bin/service_post/post_bitcoin.sh b/rootfs/standard/usr/bin/service_post/post_bitcoin.sh index 63f25286..676dcf46 100755 --- a/rootfs/standard/usr/bin/service_post/post_bitcoin.sh +++ b/rootfs/standard/usr/bin/service_post/post_bitcoin.sh @@ -4,9 +4,9 @@ source /usr/share/mynode/mynode_config.sh set -x -WALLET_FOLDER="/mnt/hdd/mynode/bitcoin/wallets" +WALLET_FOLDER="/mnt/hdd/mynode/bitcoin" if [ -f $IS_TESTNET_ENABLED_FILE ]; then - WALLET_FOLDER="/mnt/hdd/mynode/bitcoin/wallets" + WALLET_FOLDER="/mnt/hdd/mynode/bitcoin/testnet3/wallets" fi sleep 60s