mirror of
https://github.com/FlipsideCrypto/dcrd.git
synced 2026-02-06 10:56:47 +00:00
This modifies the majority of the tests that make use of chain parameters and the RPC tests to use the resurrected regression test network. It also bumps the affected module versions as follows: - github.com/decred/dcrd/txscript@v1.0.2 - github.com/decred/dcrd/blockchain/stake@v1.0.3 - github.com/decred/dcrd/mempool@v1.0.2 The blockchain and dcrutil modules are also affected, but since their version has already been bumped since their last release tags, they are not bumped again.
24 lines
866 B
Modula-2
24 lines
866 B
Modula-2
module github.com/decred/dcrd/txscript
|
|
|
|
require (
|
|
github.com/decred/dcrd/chaincfg v1.2.0
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
|
|
github.com/decred/dcrd/dcrec v0.0.0-20180721031028-5369a485acf6
|
|
github.com/decred/dcrd/dcrec/edwards v0.0.0-20180721031028-5369a485acf6
|
|
github.com/decred/dcrd/dcrec/secp256k1 v1.0.0
|
|
github.com/decred/dcrd/dcrutil v1.1.1
|
|
github.com/decred/dcrd/wire v1.2.0
|
|
github.com/decred/slog v1.0.0
|
|
golang.org/x/crypto v0.0.0-20180718160520-a2144134853f
|
|
)
|
|
|
|
replace (
|
|
github.com/decred/dcrd/chaincfg => ../chaincfg
|
|
github.com/decred/dcrd/chaincfg/chainhash => ../chaincfg/chainhash
|
|
github.com/decred/dcrd/dcrec => ../dcrec
|
|
github.com/decred/dcrd/dcrec/edwards => ../dcrec/edwards
|
|
github.com/decred/dcrd/dcrec/secp256k1 => ../dcrec/secp256k1
|
|
github.com/decred/dcrd/dcrutil => ../dcrutil
|
|
github.com/decred/dcrd/wire => ../wire
|
|
)
|