From 303cc7010006dcb546d92d8a4c8c52e43ad14ead Mon Sep 17 00:00:00 2001 From: valued mammal Date: Fri, 23 Jan 2026 14:56:14 -0500 Subject: [PATCH] docs(testenv): fix rustdocs for `corepc` types --- crates/testenv/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } -- 2.49.0