We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8712ad commit b2d852dCopy full SHA for b2d852d
tree.go
@@ -1571,17 +1571,6 @@ func (n *InternalNode) BatchSerialize() ([]SerializedNode, error) {
1571
}
1572
1573
1574
- // TODO: we transform nodes in the first layer to HashedNodes, to avoid further calls
1575
- // to this method to do double-work. This is a temporary change for geth since in
1576
- // the current influx PBSS effort, there're still calls to Commit() storage tries
1577
- // which in VKT doesn't make sense anymore. This changes makes those calls a ~noop.
1578
- for i := range n.children {
1579
- switch n.children[i].(type) {
1580
- case *InternalNode, *LeafNode:
1581
- n.children[i] = HashedNode{}
1582
- }
1583
1584
-
1585
return ret, nil
1586
1587
0 commit comments