util/address: remove unused generic type
This commit is contained in:
parent
abc242dfe1
commit
8b1dbf5c9f
|
@ -515,9 +515,9 @@ impl Address {
|
||||||
|
|
||||||
/// Create a pay to taproot address from untweaked key
|
/// Create a pay to taproot address from untweaked key
|
||||||
pub fn p2tr<C: Verification>(
|
pub fn p2tr<C: Verification>(
|
||||||
secp: Secp256k1<C>,
|
secp: Secp256k1<C>,
|
||||||
internal_key: UntweakedPublicKey,
|
internal_key: UntweakedPublicKey,
|
||||||
merkle_root: Option<TapBranchHash>,
|
merkle_root: Option<TapBranchHash>,
|
||||||
network: Network
|
network: Network
|
||||||
) -> Address {
|
) -> Address {
|
||||||
Address {
|
Address {
|
||||||
|
@ -532,8 +532,8 @@ impl Address {
|
||||||
/// Create a pay to taproot address from a pre-tweaked output key.
|
/// Create a pay to taproot address from a pre-tweaked output key.
|
||||||
///
|
///
|
||||||
/// This method is not recommended for use and [Address::p2tr()] should be used where possible.
|
/// This method is not recommended for use and [Address::p2tr()] should be used where possible.
|
||||||
pub fn p2tr_tweaked<C: Verification>(
|
pub fn p2tr_tweaked(
|
||||||
output_key: TweakedPublicKey,
|
output_key: TweakedPublicKey,
|
||||||
network: Network
|
network: Network
|
||||||
) -> Address {
|
) -> Address {
|
||||||
Address {
|
Address {
|
||||||
|
|
Loading…
Reference in New Issue