Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bdk-ffi
Submodule bdk-ffi updated 30 files
+1 −5 .github/workflows/cont_integration.yml
+4 −16 .github/workflows/kotlin-api-docs.yaml
+31 −21 .github/workflows/test-android.yaml
+36 −0 .github/workflows/trigger-external-bindings.yml
+1 −1 README.md
+ bdk-android/lib/src/androidTest/assets/persistence_test_db.sqlite3
+38 −0 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/Constants.kt
+94 −0 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/CreatingWalletTest.kt
+50 −0 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/DescriptorTest.kt
+0 −82 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/LiveTxBuilderTest.kt
+0 −93 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/LiveWalletTest.kt
+5 −4 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/MnemonicTest.kt
+0 −74 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/OfflineWalletTest.kt
+53 −0 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/PersistenceTest.kt
+68 −0 bdk-android/lib/src/androidTest/kotlin/org/bitcoindevkit/WalletTest.kt
+0 −1 bdk-android/scripts/build-linux-x86_64.sh
+0 −1 bdk-android/scripts/build-macos-aarch64.sh
+0 −1 bdk-android/scripts/build-windows-x86_64.sh
+4 −4 bdk-ffi/Cargo.lock
+1 −1 bdk-ffi/Cargo.toml
+0 −3 bdk-ffi/build.rs
+3 −0 bdk-ffi/rust-toolchain.toml
+0 −10 bdk-ffi/src/bdk.udl
+19 −1 bdk-ffi/src/bitcoin.rs
+32 −0 bdk-ffi/src/error.rs
+1 −35 bdk-ffi/src/kyoto.rs
+1 −3 bdk-ffi/src/lib.rs
+76 −8 bdk-ffi/src/wallet.rs
+3 −0 bdk-swift/Tests/BitcoinDevKitTests/LiveKyotoTests.swift
+3 −4 bdk-swift/build-xcframework.sh
3 changes: 0 additions & 3 deletions examples/src/main/kotlin/Kyoto.kt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ fun main() {
val client = lightClient.client
val node = lightClient.node

val logJob = launchLogCollector(this, client::nextLog, "LOG")
val logWarningJob = launchLogCollector(this, client::nextWarning, "WARNING")
val logInfoJob = launchLogCollector(this, client::nextInfo, "INFO")

Expand All @@ -64,7 +63,6 @@ fun main() {
}else{
println("Wallet balance is 0. Try sending funds to ${address.address} and try again.")
}
logJob.cancelAndJoin()
logWarningJob.cancelAndJoin()
logInfoJob.cancelAndJoin()
client.shutdown()
Expand All @@ -77,7 +75,6 @@ fun <T> launchLogCollector(scope: CoroutineScope, collector: suspend () -> T, lo
while (true) {
val log = collector()
when (logType) {
"LOG" -> logger.info("$log")
"WARNING" -> logger.warn("$log")
"INFO" -> logger.info("$log")
else -> logger.debug("[$logType]: $log")
Expand Down