Closed vmx closed 1 year ago
For the TreeD the amount of nodes for the full merkle tree and not for the subtrees needs to be used. The node_count variable was shadowed by another instance. This is fixed by renaming the initial variable.
node_count
Fortunately for TreeD it's a no-op.
What is a no-op? The rows to discard?
Fortunately for TreeD it's a no-op. What is a no-op? The rows to discard?
The value passed in (the 'bug') isn't used.
For the TreeD the amount of nodes for the full merkle tree and not for the subtrees needs to be used. The
node_count
variable was shadowed by another instance. This is fixed by renaming the initial variable.