Skip to content

Commit

Permalink
accumulator/pollardproof: Remove unnecessary commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
kcalvinalvin authored Aug 16, 2021
1 parent 0c940de commit 258c8e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion accumulator/pollardproof.go
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ func populateOne(tree miniTree, node *polNode) int {
// that we'll be populating into. Length of polNodes MUST match all the nodes that will be populated.
//
// populate returns how many polNodes have been populated.
func populate(rows uint8, pos uint64, root *polNode, trees *[]miniTree) int { //, polNodes []*polNode) int {
func populate(rows uint8, pos uint64, root *polNode, trees *[]miniTree) int {
// If there's nothing to populate, return early
if len(*trees) <= 0 {
return 0
Expand Down

0 comments on commit 258c8e3

Please sign in to comment.