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 a4ed3dc commit af09d57Copy full SHA for af09d57
example-crates/example_wallet_rpc/src/main.rs
@@ -8,8 +8,8 @@ use bdk_wallet::{
8
KeychainKind, Wallet,
9
};
10
use clap::{self, Parser};
11
-use std::{path::PathBuf, sync::mpsc::sync_channel, thread::spawn, time::Instant};
12
use serde_json::json;
+use std::{path::PathBuf, sync::mpsc::sync_channel, thread::spawn, time::Instant};
13
14
const DB_MAGIC: &str = "bdk-rpc-wallet-example";
15
@@ -192,7 +192,7 @@ fn main() -> anyhow::Result<()> {
192
}
193
194
195
-
+
196
let wallet_tip_end = wallet.latest_checkpoint();
197
let balance = wallet.balance();
198
println!(
0 commit comments