From 886ee5499de2217415ad614218499df86cc93263 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Thu, 4 May 2023 18:51:53 +0000 Subject: [PATCH] mmgen-xmrwallet: remove --export-all option --- mmgen/main_xmrwallet.py | 2 -- mmgen/xmrwallet.py | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/mmgen/main_xmrwallet.py b/mmgen/main_xmrwallet.py index 3070d5f3..9b25d6c3 100755 --- a/mmgen/main_xmrwallet.py +++ b/mmgen/main_xmrwallet.py @@ -57,8 +57,6 @@ opts_data = { -h, --help Print this help message --, --longhelp Print help message for long options (common options) --A, --export-all Export all outputs when performing the - ‘export-outputs’ operation -a, --autosign Use appropriate outdir and other params for autosigning operations (implies --watch-only). When this option is in effect, filename argu- diff --git a/mmgen/xmrwallet.py b/mmgen/xmrwallet.py index 09a1dba2..a8e1e07f 100755 --- a/mmgen/xmrwallet.py +++ b/mmgen/xmrwallet.py @@ -1764,7 +1764,6 @@ class MoneroWalletOps: class export_outputs(wallet): action = 'exporting outputs from' stem = 'process' - opts = ('export_all',) async def process_wallet(self,d,fn,last): h = self.rpc(self,d) @@ -1780,7 +1779,7 @@ class MoneroWalletOps: m = MoneroWalletOutputsFile.New( parent = self, wallet_fn = fn, - data = self.c.call('export_outputs', all=self.cfg.export_all ), + data = self.c.call('export_outputs', all=True), ) m.write() return True