drk: Output a little note when subscribing for block notifications.

This commit is contained in:
parazyd
2023-02-25 13:49:42 +01:00
parent bb22f30815
commit 8a1f640912

View File

@@ -65,6 +65,7 @@ impl Drk {
let req = JsonRequest::new("blockchain.subscribe_blocks", json!([]));
task::spawn(async move { rpc_client.subscribe(req, subscriber).await.unwrap() });
eprintln!("Detached subscription to background");
eprintln!("All is good. Waiting for block notifications...");
let e = loop {
match subscription.receive().await {