From: valued mammal Date: Fri, 23 Jan 2026 19:56:14 +0000 (-0500) Subject: docs(testenv): fix rustdocs for `corepc` types X-Git-Url: http://internal-gitweb-vhost/%22https:/parse/scripts/database/-script/encode/struct.LocalUpdate.html?a=commitdiff_plain;h=303cc7010006dcb546d92d8a4c8c52e43ad14ead;p=bdk docs(testenv): fix rustdocs for `corepc` types --- diff --git a/crates/testenv/src/lib.rs b/crates/testenv/src/lib.rs index 04e55281..914200e9 100644 --- a/crates/testenv/src/lib.rs +++ b/crates/testenv/src/lib.rs @@ -24,7 +24,7 @@ pub struct TestEnv { /// Configuration parameters. #[derive(Debug)] pub struct Config<'a> { - /// [`bitcoind::Conf`] + /// [`corepc_node::Conf`] pub bitcoind: corepc_node::Conf<'a>, /// [`electrsd::Conf`] pub electrsd: electrsd::Conf<'a>, @@ -76,7 +76,7 @@ impl TestEnv { &self.electrsd.client } - /// Exposes the [`RpcApi`] calls from [`bitcoincore_rpc`]. + /// Exposes the RPC calls from [`corepc_client`]. pub fn rpc_client(&self) -> &corepc_node::Client { &self.bitcoind.client }