Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit e852994

Browse files
authored
typo: new_with_auth
Fixes a typo in `new_with_auth` that should be "with authentication" instead of "without authentication"
1 parent 4b0bd28 commit e852994

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/client_sync/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ macro_rules! define_jsonrpc_minreq_client {
8686
Self { inner }
8787
}
8888

89-
/// Creates a client to a bitcoind JSON-RPC server without authentication.
89+
/// Creates a client to a bitcoind JSON-RPC server with authentication.
9090
pub fn new_with_auth(url: &str, auth: Auth) -> Result<Self> {
9191
if matches!(auth, Auth::None) {
9292
return Err(Error::MissingUserPassword);

0 commit comments

Comments
 (0)