We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 257bffb commit 296c3b8Copy full SHA for 296c3b8
bindings/kotlin/ldk-node-jvm/lib/src/test/kotlin/org/lightningdevkit/ldknode/LibraryTest.kt
@@ -205,7 +205,7 @@ class LibraryTest {
205
else -> return
206
}
207
208
- val invoice = node2.receivePayment(1000000u, "asdf", 9217u)
+ val invoice = node2.receivePayment(2500000u, "asdf", 9217u)
209
210
node1.sendPayment(invoice)
211
@@ -245,7 +245,7 @@ class LibraryTest {
245
println("Spendable balance 2 after close: $spendableBalance2AfterClose")
246
assert(spendableBalance1AfterClose > 95000u)
247
assert(spendableBalance1AfterClose < 100000u)
248
- assertEquals(101000uL, spendableBalance2AfterClose)
+ assertEquals(102500uL, spendableBalance2AfterClose)
249
250
node1.stop()
251
node2.stop()
0 commit comments