From 2279ed84dc73c4f4957110f0dfdf4b325498bb6a Mon Sep 17 00:00:00 2001 From: nahuhh <50635951+nahuhh@users.noreply.github.com> Date: Thu, 23 Oct 2025 01:07:26 +0000 Subject: [PATCH] xmr: --non-interactive doesnt have any functionality on wallet --- basicswap/bin/run.py | 2 +- docker/production/monero_wallet/Dockerfile | 2 +- docker/production/wownero_wallet/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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"]