diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-07-12 20:29:32 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-12 20:29:32 -0500 |
commit | 5e81214d5c8f2bdeb40e54089465dc078142453a (patch) | |
tree | 6ab00b99033cde052c0658b53b50737bca987f4d /tests | |
parent | Merge pull request #5737 (diff) | |
parent | wallet_rpc_server: fix get_bulk_payments with short payment ids (diff) | |
download | monero-5e81214d5c8f2bdeb40e54089465dc078142453a.tar.xz |
Merge pull request #5747
f3febaf wallet_rpc_server: fix get_bulk_payments with short payment ids (moneromooo-monero)
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/functional_tests/transfer.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/functional_tests/transfer.py b/tests/functional_tests/transfer.py index 7bf0f4957..d9a6e592e 100755 --- a/tests/functional_tests/transfer.py +++ b/tests/functional_tests/transfer.py @@ -519,6 +519,9 @@ class TransferTest(): res = self.wallet[2].get_bulk_payments(payment_ids = ['1'*64, '1234500000012345abcde00000abcdeff1234500000012345abcde00000abcde', '2'*64]) assert len(res.payments) >= 1 # one tx was sent + res = self.wallet[1].get_bulk_payments(["1111111122222222"]) + assert len(res.payments) >= 1 # we have one of these + def check_double_spend_detection(self): print('Checking double spend detection') txes = [[None, None], [None, None]] |