Skip to content

Commit 78adc4f

Browse files
committed
Fix rename of claim_reverse_swap in Notification Plugin
(cherry picked from commit dac9ae5)
1 parent 2b0f6e4 commit 78adc4f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libs/sdk-bindings/bindings-android/lib/src/main/kotlin/breez_sdk_notification/job/ConfirmTransaction.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class ConfirmTransactionJob(
5252
}
5353

5454
try {
55-
breezSDK.processReverseSwap(address)
55+
breezSDK.claimReverseSwap(address)
5656
logger.log(TAG, "Found reverse swap for $address", "INFO")
5757
return
5858
} catch (e: Exception) {

libs/sdk-bindings/bindings-swift/Sources/BreezSDK/Task/ConfirmTransaction.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class ConfirmTransactionTask : TaskProtocol {
6969
}
7070

7171
do {
72-
try breezSDK.processReverseSwap(lockupAddress: address)
72+
try breezSDK.claimReverseSwap(lockupAddress: address)
7373
self.logger.log(tag: TAG, line: "Found reverse swap for \(address)", level: "DEBUG")
7474
} catch let e {
7575
self.logger.log(tag: TAG, line: "Failed to process reverse swap: \(e)", level: "ERROR")

0 commit comments

Comments
 (0)