Browse Source

mmgen-xmrwallet: remove --export-all option

The MMGen Project 1 year ago
parent
commit
886ee5499d
2 changed files with 1 additions and 4 deletions
  1. 0 2
      mmgen/main_xmrwallet.py
  2. 1 2
      mmgen/xmrwallet.py

+ 0 - 2
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-

+ 1 - 2
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