diff --git a/run_wallet.sh b/run_wallet.sh index 483f043..2d9a0df 100644 --- a/run_wallet.sh +++ b/run_wallet.sh @@ -2,26 +2,16 @@ export DAEMON_URI="${1}" -export WALLET_CREDS="${2}" export WALLET_FILE="/wallet/wallet" export PASSWORD_FILE="/wallet/password" export INIT_LOG="/wallet/init.log" -# Create new wallet if it doesn't exist if [[ ! -f ${WALLET_FILE} ]]; then - echo $WALLET_CREDS > ${PASSWORD_FILE} - wownero-wallet-cli \ - --generate-new-wallet ${WALLET_FILE} \ - --daemon-address ${DAEMON_URI} \ - --password-file ${PASSWORD_FILE} \ - --trusted-daemon \ - --use-english-language-names \ - --mnemonic-language English \ - --command status \ - | tee ${INIT_LOG} + echo -e "[!] Wallet file does not exist. Create a new wallet and upload the private view keys to BTCPayServer" + sleep 10 + exit 1 fi -# Run RPC wallet wownero-wallet-rpc \ --daemon-address ${DAEMON_URI} \ --wallet-file ${WALLET_FILE} \ @@ -35,3 +25,5 @@ wownero-wallet-rpc \ --non-interactive \ --trusted-daemon \ --tx-notify="/usr/bin/curl -s -X GET http://btcpayserver:49392/wownerolikedaemoncallback/tx?cryptoCode=wow&hash=%s" + +sleep 5 \ No newline at end of file