Merge pull request #5746

3140a37 wallet_rpc_server: fix get_bulk_payments with short payment ids (moneromooo-monero)
pull/326/head
luigi1111 5 years ago
commit fd3ff74164
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -1745,6 +1745,11 @@ namespace tools
else if (payment_id_str.size() == 2 * sizeof(payment_id8))
{
r = epee::string_tools::hex_to_pod(payment_id_str, payment_id8);
if (r)
{
memcpy(payment_id.data, payment_id8.data, 8);
memset(payment_id.data + 8, 0, 24);
}
}
else
{

@ -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]]

Loading…
Cancel
Save