Skip to content

Commit 98625f2

Browse files
committed
refactor: fix typo
1 parent 7e819d8 commit 98625f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/to/bitkit/repositories/LightningRepo.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ class LightningRepo @Inject constructor(
199199
suspend fun getPayments(): Result<List<PaymentDetails>> = withContext(bgDispatcher) {
200200
try {
201201
val payments = lightningService.payments
202-
?: return@withContext Result.failure(Exception("It wan't possible get the payments"))
202+
?: return@withContext Result.failure(Exception("It wasn't possible get the payments"))
203203
Result.success(payments)
204204
} catch (e: Throwable) {
205205
Logger.error("getPayments error", e)

0 commit comments

Comments
 (0)