mirror of
https://github.com/FlipsideCrypto/dcrd.git
synced 2026-02-06 10:56:47 +00:00
This updates the following modules to use the secp256k1/v2 module: - blockchain - chaincfg/v2 - dcrutil/v2 - hdkeychain/v2 - mempool/v3 - txscript/v2 - main The hdkeychain/v3 and txscript/v2 modules both use types from secp256k1 in their public API. Consequently, in order avoid forcing them to bump their major versions, secp256k1/v1.0.3 was released with the types redefined in terms of the secp256k1/v2 module so callers still using v1 of the module that are not ready to upgrade to the v2 module yet can interoperate by updating to the latest patch version.
12 lines
280 B
Modula-2
12 lines
280 B
Modula-2
module github.com/decred/dcrd/chaincfg/v2
|
|
|
|
go 1.11
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
|
|
github.com/decred/dcrd/dcrec/edwards v1.0.0
|
|
github.com/decred/dcrd/dcrec/secp256k1/v2 v2.0.0
|
|
github.com/decred/dcrd/wire v1.2.0
|
|
)
|