mmgen-xmrwallet: remove --export-all option

This commit is contained in:
The MMGen Project 2023-05-04 18:51:53 +00:00
commit 886ee5499d
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
2 changed files with 1 additions and 4 deletions

View file

@ -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-

View file

@ -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