From 6e6daa1d81bc6efc676b75135c98409e98b6b097 Mon Sep 17 00:00:00 2001 From: teor Date: Fri, 9 Dec 2022 11:12:56 +1000 Subject: [PATCH] Fix incorrect P2SH comments and logs --- zebra-rpc/src/methods/get_block_template_rpcs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zebra-rpc/src/methods/get_block_template_rpcs.rs b/zebra-rpc/src/methods/get_block_template_rpcs.rs index ab18e43d941..0ede8fb2939 100644 --- a/zebra-rpc/src/methods/get_block_template_rpcs.rs +++ b/zebra-rpc/src/methods/get_block_template_rpcs.rs @@ -185,7 +185,7 @@ where /// The configured miner address for this RPC service. /// - /// Zebra currently only supports single-signature P2SH transparent addresses. + /// Zebra currently only supports transparent addresses. miner_address: Option, // Services @@ -346,7 +346,7 @@ where let miner_address = miner_address.ok_or_else(|| Error { code: ErrorCode::ServerError(0), message: "configure mining.miner_address in zebrad.toml \ - with a transparent P2SH address" + with a transparent address" .to_string(), data: None, })?;