Skip to content

Commit

Permalink
chore: use serde_json exported from bdk_bitcoind_rpc
Browse files Browse the repository at this point in the history
  • Loading branch information
thunderbiscuit committed May 29, 2024
1 parent 9790d60 commit e5e7aba
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 2 deletions.
54 changes: 53 additions & 1 deletion bdk-ffi/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bdk-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ bdk = { version = "1.0.0-alpha.11", features = ["all-keys", "keys-bip39"] }
bdk_esplora = { version = "0.13.0", default-features = false, features = ["std", "blocking", "blocking-https-rustls"] }
bdk_electrum = { version = "0.13.0" }
bdk_file_store = { version = "0.11.0" }
bdk_bitcoind_rpc = { version = "0.10.0" }

uniffi = { version = "=0.27.1" }
bitcoin-internals = { version = "0.2.0", features = ["alloc"] }
thiserror = "1.0.58"
serde_json = "1.0.116"

[build-dependencies]
uniffi = { version = "=0.27.1", features = ["build"] }
Expand Down
1 change: 1 addition & 0 deletions bdk-ffi/src/bitcoin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ use bdk::bitcoin::Psbt as BdkPsbt;
use bdk::bitcoin::Transaction as BdkTransaction;
use bdk::bitcoin::TxIn as BdkTxIn;
use bdk::bitcoin::Txid;
use bdk_bitcoind_rpc::bitcoincore_rpc::jsonrpc::serde_json;

use std::io::Cursor;
use std::ops::Deref;
Expand Down

0 comments on commit e5e7aba

Please sign in to comment.