2021-11-18 18:25:56 -08:00
|
|
|
module github.com/btcsuite/btcd/btcec/v2
|
|
|
|
|
|
|
|
go 1.17
|
|
|
|
|
|
|
|
require (
|
2022-03-08 16:09:59 +01:00
|
|
|
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.0
|
2021-11-18 18:25:56 -08:00
|
|
|
github.com/davecgh/go-spew v1.1.1
|
|
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
|
|
|
|
)
|
2021-12-02 18:33:04 -08:00
|
|
|
|
|
|
|
require github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect
|
2022-03-08 16:10:12 +01:00
|
|
|
|
|
|
|
// We depend on chainhash as is, so we need to replace to use the version of
|
|
|
|
// chainhash included in the version of btcd we're building in.
|
|
|
|
// TODO(guggero): Remove this as soon as we have a tagged version of chainhash.
|
|
|
|
replace github.com/btcsuite/btcd/chaincfg/chainhash => ../chaincfg/chainhash
|