From 18faa62f59280ae696dad8d77e3bba57fea8879a Mon Sep 17 00:00:00 2001 From: Jeremy Klein Date: Wed, 12 Feb 2025 18:04:14 -0800 Subject: [PATCH] Remove an extra param for outgoing_payment_for_idempotency_key --- .../lightspark/sdk/graphql/OutgoingPaymentForIdempotencyKey.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/graphql/OutgoingPaymentForIdempotencyKey.kt b/lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/graphql/OutgoingPaymentForIdempotencyKey.kt index 13e68ccd..ed6893dc 100644 --- a/lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/graphql/OutgoingPaymentForIdempotencyKey.kt +++ b/lightspark-sdk/src/commonMain/kotlin/com/lightspark/sdk/graphql/OutgoingPaymentForIdempotencyKey.kt @@ -7,8 +7,7 @@ query OutgoingPaymentForIdempotencyKey( ${'$'}idempotency_key: String! ) { outgoing_payment_for_idempotency_key(input: { - idempotency_key: ${'$'}idempotency_key, - statuses: ${'$'}transactionStatuses + idempotency_key: ${'$'}idempotency_key }) { payment { ...OutgoingPaymentFragment