Skip to content

Commit 6c0b35b

Browse files
authored
Merge pull request #36 from lightsparkdev/fix/typeissue
Fix a type issue in the outgoing_payments_for_payment_hash query
2 parents e0ee78a + 6480d8a commit 6c0b35b

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
# v2.7.1
4+
5+
- Minor type fix in the `outgoing_payments_for_payment_hash` query.
6+
37
# v2.7.0
48

59
- Add `fail_htlcs` function to cancel pending htlcs (for example for HODL invoices).

lightspark/scripts/outgoing_payments_for_payment_hash.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
OUTGOING_PAYMENTS_FOR_PAYMENT_HASH_QUERY = f"""
66
query OutgoingPaymentsForPaymentHash(
7-
$payment_hash: String!,
7+
$payment_hash: Hash32!,
88
$transaction_statuses: [TransactionStatus!] = null
99
) {{
1010
outgoing_payments_for_payment_hash(input: {{

lightspark/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.7.0"
1+
__version__ = "2.7.1"

0 commit comments

Comments
 (0)