| 11 | |
| 12 | #[derive(Debug, Clone)] |
| 13 | pub struct BitcoinMerkleTree { |
| 14 | nodes: Vec<Vec<[u8; 32]>>, |
| 15 | } |
| 16 | |
| 17 | impl BitcoinMerkleTree { |
| 18 | /// Constructs a standard Bitcoin Merkle tree. |
nothing calls this directly
no outgoing calls
no test coverage detected