Make block rc code more understandable

This commit is contained in:
Alex Auvolat
2021-03-15 18:27:26 +01:00
parent 3bf2df622a
commit 0290afe1f8
3 changed files with 40 additions and 34 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ pub struct MerkleUpdater {
// Content of the merkle tree: items where
// - key = .bytes() for MerkleNodeKey
// - value = serialization of a MerkleNode, assumed to be MerkleNode::empty if not found
pub(crate) merkle_tree: sled::Tree,
pub merkle_tree: sled::Tree,
empty_node_hash: Hash,
}