Added a working btc-rpc client, works with a running local signet node

This commit is contained in:
Dave Hrycyszyn
2024-06-20 19:46:56 +01:00
parent 13e144f19e
commit c5a6aeb067
4 changed files with 29 additions and 16 deletions

View File

@@ -31,7 +31,7 @@ pub async fn run() {
node.start().await;
}
Some(Commands::Btc {}) => {
println!("BTC command not yet implemented.");
clients::btc_rpc::client();
}
None => println!("No command provided. Exiting. See --help for more information."),
}