aboutsummaryrefslogtreecommitdiff
path: root/utils/python-rpc
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2022-09-09 12:48:47 -0500
committerluigi1111 <luigi1111w@gmail.com>2022-09-09 12:48:47 -0500
commitc89d06341a3cd9b58299a420fa30fb2723d47cc9 (patch)
tree06d53ff6c770dfcfa561e19bbdfef8eb487cd11d /utils/python-rpc
parentMerge pull request #8348 (diff)
parentwallet2: ensure imported outputs subaddresses are created (diff)
downloadmonero-c89d06341a3cd9b58299a420fa30fb2723d47cc9.tar.xz
Merge pull request #8513
959a3e6 wallet2: ensure imported outputs subaddresses are created (moneromooo-monero) a098504 wallet2: better test on whether to allow output import (moneromooo-monero) c5579ac allow exporting outputs in chunks (moneromooo-monero) 1e912ec wallet2: fixes for export/import output flow (j-berman) 692f1d4 wallet2: do not assume imported outputs must be non empty (moneromooo-monero) 67b6d6a wallet2: prevent importing outputs in a hot wallet (moneromooo-monero) d9fc666 wallet2: fix missing subaddress indices in 'light' exported outputs (moneromooo-monero)
Diffstat (limited to 'utils/python-rpc')
-rw-r--r--utils/python-rpc/framework/wallet.py5
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'