diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2022-09-09 12:57:51 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2022-09-09 12:57:51 -0500 |
| commit | af4f97bf66282bb2af25b5577d9bcba4d00b00b0 (patch) | |
| tree | fd56eafb5191416b67c55b6479056cd1423c1ad7 /utils | |
| parent | 89f3d461204a416c82bff6da6a9cc9c3602132dc (diff) | |
| parent | e29b2e999737b76bbddd844858168a145916ebe0 (diff) | |
| download | monzero-core-af4f97bf66282bb2af25b5577d9bcba4d00b00b0.tar.gz monzero-core-af4f97bf66282bb2af25b5577d9bcba4d00b00b0.tar.xz monzero-core-af4f97bf66282bb2af25b5577d9bcba4d00b00b0.zip | |
Merge pull request #8555
e29b2e9 wallet2: ensure imported outputs subaddresses are created (moneromooo-monero)
1d3657a wallet2: better test on whether to allow output import (moneromooo-monero)
0cbf557 allow exporting outputs in chunks (moneromooo-monero)
b03d709 wallet2: fixes for export/import output flow (j-berman)
4b7eb57 wallet2: do not assume imported outputs must be non empty (moneromooo-monero)
5b98beb wallet2: prevent importing outputs in a hot wallet (moneromooo-monero)
0de1571 wallet2: fix missing subaddress indices in 'light' exported outputs (moneromooo-monero)
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/python-rpc/framework/wallet.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/utils/python-rpc/framework/wallet.py b/utils/python-rpc/framework/wallet.py index 01e937627..f2618b0a8 100644 --- a/utils/python-rpc/framework/wallet.py +++ b/utils/python-rpc/framework/wallet.py @@ -763,10 +763,13 @@ class Wallet(object): } return self.rpc.send_json_rpc_request(get_languages) - def export_outputs(self): + def export_outputs(self, all = False, start = 0, count = 0xffffffff): export_outputs = { 'method': 'export_outputs', 'params': { + 'all': all, + 'start': start, + 'count': count, }, 'jsonrpc': '2.0', 'id': '0' |
