From bcf85809133a6017b309c731b04a7f02e8229f33 Mon Sep 17 00:00:00 2001 From: calciumbe <192480234+calciumbe@users.noreply.github.com> Date: Mon, 23 Dec 2024 20:34:54 +0800 Subject: [PATCH] bitcoin: fix typo --- bitcoin/src/merkle_tree/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/src/merkle_tree/mod.rs b/bitcoin/src/merkle_tree/mod.rs index b656ce7e7..82801fdd4 100644 --- a/bitcoin/src/merkle_tree/mod.rs +++ b/bitcoin/src/merkle_tree/mod.rs @@ -41,7 +41,7 @@ impl_hashencode!(WitnessMerkleNode); /// Other Merkle trees in Bitcoin, such as those used in Taproot commitments, /// do not use this algorithm and cannot use this trait. pub trait MerkleNode: Copy { - /// The hash (TXID or WTXID) of a transaciton in the tree. + /// The hash (TXID or WTXID) of a transaction in the tree. type Leaf: TxIdentifier; /// Convert a hash to a leaf node of the tree.