Skip to content

Commit

Permalink
Fix incorrect P2SH comments and logs
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 committed Dec 9, 2022
1 parent 38861d9 commit 6e6daa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zebra-rpc/src/methods/get_block_template_rpcs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<transparent::Address>,

// Services
Expand Down Expand Up @@ -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,
})?;
Expand Down

0 comments on commit 6e6daa1

Please sign in to comment.