diff --git a/basicswap/bin/run.py b/basicswap/bin/run.py index 8281e30..43fcf7d 100755 --- a/basicswap/bin/run.py +++ b/basicswap/bin/run.py @@ -221,7 +221,7 @@ def startXmrDaemon(node_dir, bin_dir, daemon_bin, opts=[]): def startXmrWalletDaemon(node_dir, bin_dir, wallet_bin, opts=[]): daemon_path = os.path.expanduser(os.path.join(bin_dir, wallet_bin)) - args = [daemon_path, "--non-interactive"] + args = [daemon_path] needs_rewrite: bool = False config_to_remove = [ diff --git a/docker/production/monero_wallet/Dockerfile b/docker/production/monero_wallet/Dockerfile index 63a7bd3..628e040 100644 --- a/docker/production/monero_wallet/Dockerfile +++ b/docker/production/monero_wallet/Dockerfile @@ -13,4 +13,4 @@ VOLUME $MONERO_DATA COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] -CMD ["/monero/monero-wallet-rpc", "--non-interactive", "--config-file=/data/monero_wallet.conf", "--confirm-external-bind"] +CMD ["/monero/monero-wallet-rpc", "--config-file=/data/monero_wallet.conf", "--confirm-external-bind"] diff --git a/docker/production/wownero_wallet/Dockerfile b/docker/production/wownero_wallet/Dockerfile index 5a6d398..09844cc 100644 --- a/docker/production/wownero_wallet/Dockerfile +++ b/docker/production/wownero_wallet/Dockerfile @@ -13,4 +13,4 @@ VOLUME $WOWNERO_DATA COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] -CMD ["/wownero/wownero-wallet-rpc", "--non-interactive", "--config-file=/data/wownero-wallet-rpc.conf", "--confirm-external-bind"] +CMD ["/wownero/wownero-wallet-rpc", "--config-file=/data/wownero-wallet-rpc.conf", "--confirm-external-bind"]