Skip to content

Commit

Permalink
ci: make the linter happy on unrelated code
Browse files Browse the repository at this point in the history
Signed-off-by: Ignacio Hagopian <jsign.uy@gmail.com>
  • Loading branch information
jsign committed Oct 4, 2023
1 parent de81293 commit f3de2cb
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions proof_ipa.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,10 @@ func (vp *VerkleProof) Copy() *VerkleProof {
IPAProof: &IPAProof{},
}

for i := range vp.OtherStems {
ret.OtherStems[i] = vp.OtherStems[i]
}

copy(ret.OtherStems, vp.OtherStems)
copy(ret.DepthExtensionPresent, vp.DepthExtensionPresent)
for i := range vp.CommitmentsByPath {
ret.CommitmentsByPath[i] = vp.CommitmentsByPath[i]
}
copy(ret.CommitmentsByPath, vp.CommitmentsByPath)

ret.D = vp.D

if vp.IPAProof != nil {
Expand Down

0 comments on commit f3de2cb

Please sign in to comment.