test: fix live tests

This commit is contained in:
thunderbiscuit 2024-06-14 10:19:54 -04:00
parent 1a1920e7e3
commit a2794f25b0
No known key found for this signature in database
GPG Key ID: 88253696EB836462
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ class LiveTxBuilderTest {
println("Balance: ${wallet.getBalance().total.toSat()}") println("Balance: ${wallet.getBalance().total.toSat()}")
assert(wallet.getBalance().total.toSat() > 0uL) { assert(wallet.getBalance().total.toSat() > 0uL) {
"Wallet balance must be greater than 0! Please send funds to ${wallet.revealNextAddress(KeychainKind.EXTERNAL).address.asString()} and try again." "Wallet balance must be greater than 0! Please send funds to ${wallet.revealNextAddress(KeychainKind.EXTERNAL).address} and try again."
} }
val recipient1: Address = Address("tb1qrnfslnrve9uncz9pzpvf83k3ukz22ljgees989", Network.SIGNET) val recipient1: Address = Address("tb1qrnfslnrve9uncz9pzpvf83k3ukz22ljgees989", Network.SIGNET)

View File

@ -38,7 +38,7 @@ class LiveWalletTest {
println("Balance: $balance") println("Balance: $balance")
assert(wallet.getBalance().total.toSat() > 0uL) { assert(wallet.getBalance().total.toSat() > 0uL) {
"Wallet balance must be greater than 0! Please send funds to ${wallet.revealNextAddress(KeychainKind.EXTERNAL).address.asString()} and try again." "Wallet balance must be greater than 0! Please send funds to ${wallet.revealNextAddress(KeychainKind.EXTERNAL).address} and try again."
} }
println("Transactions count: ${wallet.transactions().count()}") println("Transactions count: ${wallet.transactions().count()}")