Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gcs: Prepare v4.0.0. #3132

Merged
merged 2 commits into from
Jun 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ The following versioned modules are provided by dcrd repository:
* [hdkeychain/v3](https://github.com/decred/dcrd/tree/master/hdkeychain) -
Provides an API for working with Decred hierarchical deterministic extended
keys
* [gcs/v3](https://github.com/decred/dcrd/tree/master/gcs) - Provides an API for
* [gcs/v4](https://github.com/decred/dcrd/tree/master/gcs) - Provides an API for
building and using Golomb-coded set filters useful for light clients such as
SPV wallets
* [lru](https://github.com/decred/dcrd/tree/master/lru) - Implements a generic
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/module_hierarchy.gv
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ digraph {
txscript [label="txscript/v4" fillcolor=mediumspringgreen]
stake [label="blockchain/stake/v5" fillcolor=bisque]
standalone [label="blockchain/standalone/v2" fillcolor=firebrick4]
gcs [label="gcs/v3" fillcolor=gold]
gcs [label="gcs/v4" fillcolor=gold]
blockchain [label="blockchain/v4" fillcolor=orchid]
lru [label="lru" fillcolor=royalblue3]
peer [label="peer/v3" fillcolor=khaki]
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/module_hierarchy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions gcs/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,3 @@ require (
github.com/klauspost/cpuid/v2 v2.0.9 // indirect
lukechampine.com/blake3 v1.2.1 // indirect
)

replace github.com/decred/dcrd/blockchain/stake/v5 => ../blockchain/stake
2 changes: 2 additions & 0 deletions gcs/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ github.com/dchest/siphash v1.2.3 h1:QXwFc8cFOR2dSa/gE6o/HokBMWtLUaNDVd+22aKHeEA=
github.com/dchest/siphash v1.2.3/go.mod h1:0NvQU092bT0ipiFN++/rXm69QG9tVxLAlQHIXMPAkHc=
github.com/decred/base58 v1.0.5 h1:hwcieUM3pfPnE/6p3J100zoRfGkQxBulZHo7GZfOqic=
github.com/decred/base58 v1.0.5/go.mod h1:s/8lukEHFA6bUQQb/v3rjUySJ2hu+RioCzLukAVkrfw=
github.com/decred/dcrd/blockchain/stake/v5 v5.0.0 h1:WyxS8zMvTMpC5qYC9uJY+UzuV/x9ko4z20qBtH5Hzzs=
github.com/decred/dcrd/blockchain/stake/v5 v5.0.0/go.mod h1:5sSjMq9THpnrLkW0SjEqIBIo8qq2nXzc+m7k9oFVVmY=
github.com/decred/dcrd/chaincfg/chainhash v1.0.4 h1:zRCv6tdncLfLTKYqu7hrXvs7hW+8FO/NvwoFvGsrluU=
github.com/decred/dcrd/chaincfg/chainhash v1.0.4/go.mod h1:hA86XxlBWwHivMvxzXTSD0ZCG/LoYsFdWnCekkTMCqY=
github.com/decred/dcrd/chaincfg/v3 v3.2.0 h1:6WxA92AGBkycEuWvxtZMvA76FbzbkDRoK8OGbsR2muk=
Expand Down