aboutsummaryrefslogtreecommitdiff
path: root/tests/functional_tests/test_framework
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-03-19 13:20:42 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-03-21 19:28:44 +0000
commit5d580bfa9c55690e056ce3148cbeb27cd1635a8f (patch)
tree6dfa33eda03179f9f0d5a3fce2a2c11ff2987407 /tests/functional_tests/test_framework
parentfunctional_tests: add message signing/verification tests (diff)
downloadmonero-5d580bfa9c55690e056ce3148cbeb27cd1635a8f.tar.xz
functional_tests: add get_bulk_transfer tests
Diffstat (limited to 'tests/functional_tests/test_framework')
-rw-r--r--tests/functional_tests/test_framework/wallet.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/functional_tests/test_framework/wallet.py b/tests/functional_tests/test_framework/wallet.py
index 340eed179..7b83944e4 100644
--- a/tests/functional_tests/test_framework/wallet.py
+++ b/tests/functional_tests/test_framework/wallet.py
@@ -89,6 +89,18 @@ class Wallet(object):
}
return self.rpc.send_json_rpc_request(transfer)
+ def get_bulk_payments(self, payment_ids = [], min_block_height = 0):
+ get_bulk_payments = {
+ 'method': 'get_bulk_payments',
+ 'params': {
+ 'payment_ids': payment_ids,
+ 'min_block_height': min_block_height,
+ },
+ 'jsonrpc': '2.0',
+ 'id': '0'
+ }
+ return self.rpc.send_json_rpc_request(get_bulk_payments)
+
def describe_transfer(self, unsigned_txset):
describe_transfer = {
'method': 'describe_transfer',