Skip to content

Commit

Permalink
Merge pull request btcsuite#10 from kcalvinalvin/update-utreexo-lib
Browse files Browse the repository at this point in the history
go.mod: Update utreexo library
  • Loading branch information
kcalvinalvin authored Dec 22, 2021
2 parents e5d5bdc + 932a14e commit 166a8e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion blockchain/utreexoviewpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func (uview *UtreexoViewpoint) Modify(block *btcutil.Block, bestChain *chainView

// IngestBatchProof first checks that the utreexo proofs are valid. If it is valid,
// it readys the utreexo accumulator for additions/deletions.
err = uview.accumulator.IngestBatchProof(delHashes, ud.AccProof)
err = uview.accumulator.IngestBatchProof(delHashes, ud.AccProof, false)
if err != nil {
return err
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/jessevdk/go-flags v1.4.0
github.com/jrick/logrotate v1.0.0
github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23
github.com/mit-dci/utreexo v0.0.0-20210906142813-04aac052621c
github.com/mit-dci/utreexo v0.0.0-20211220151844-e89de3fd15c3
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
)
Expand Down
3 changes: 3 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/decred/dcrd/lru v1.0.0 h1:Kbsb1SFDsIlaupWPwsPp+dkxiBY1frcS07PCPgotKz8=
github.com/decred/dcrd/lru v1.0.0/go.mod h1:mxKOwFd7lFjN2GZYsiz/ecgqR6kkYAl+0pz0tEMk218=
github.com/dvyukov/go-fuzz v0.0.0-20210914135545-4980593459a1/go.mod h1:11Gm+ccJnvAhCNLlf5+cS9KjtbaD5I5zaZpFMsTHWTw=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4=
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
Expand All @@ -52,6 +53,8 @@ github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23 h1:FOOIBWrEkLgmlgGfM
github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4=
github.com/mit-dci/utreexo v0.0.0-20210906142813-04aac052621c h1:segR6H36KgHCVmwJ4BLK9iBNNuLWl15taE0nOl7KFJg=
github.com/mit-dci/utreexo v0.0.0-20210906142813-04aac052621c/go.mod h1:NibmQNUXsfdOMYs0VGpfd9yH74Qw1Mlbr3kRC9dcwBw=
github.com/mit-dci/utreexo v0.0.0-20211220151844-e89de3fd15c3 h1:zZb4O3cXtM5LES/J3V67rMXIIyOx2ffEic/lAaRTAHE=
github.com/mit-dci/utreexo v0.0.0-20211220151844-e89de3fd15c3/go.mod h1:R+Q0W2P+wS3pnAPu54VrqZHCkwi3jDYdoqrEcqjaCEI=
github.com/nxadm/tail v1.4.4 h1:DQuhQpB1tVlglWS2hLQ5OV6B5r8aGxSrPc5Qo6uTN78=
github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A=
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
Expand Down

0 comments on commit 166a8e5

Please sign in to comment.