This modifies the recently-updated gcs module to use a valid prerelease version of the blockchain/stake module so it can be used in require statements in consumer code that is also under development. The updated direct dependencies are as follows: - github.com/decred/dcrd/blockchain/stake/v4 v4.0.0-20210906140327-598bf66f24a6
21 lines
672 B
Modula-2
21 lines
672 B
Modula-2
module github.com/decred/dcrd/gcs/v3
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/dchest/siphash v1.2.2
|
|
github.com/decred/dcrd/blockchain/stake/v4 v4.0.0-20210906140327-598bf66f24a6
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
|
|
github.com/decred/dcrd/crypto/blake256 v1.0.0
|
|
github.com/decred/dcrd/txscript/v4 v4.0.0-20210415215133-96b98390a9a9
|
|
github.com/decred/dcrd/wire v1.4.0
|
|
)
|
|
|
|
replace (
|
|
github.com/decred/dcrd/blockchain/stake/v4 => ../blockchain/stake
|
|
github.com/decred/dcrd/database/v3 => ../database
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 => ../dcrec/secp256k1
|
|
github.com/decred/dcrd/dcrutil/v4 => ../dcrutil
|
|
github.com/decred/dcrd/txscript/v4 => ../txscript
|
|
)
|