mmgen-xmrwallet: remove --export-all option
This commit is contained in:
parent
384ed2cdbd
commit
886ee5499d
2 changed files with 1 additions and 4 deletions
|
|
@ -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-
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue