mirror of
https://github.com/btcsuite/btcd.git
synced 2025-02-24 14:51:01 +01:00
In this commit, we update the top level module to use the newly tagged sub-modules. Once we remove the circular dependant in these sub-modules, then we'll no longer have to do things like this.
22 lines
675 B
Modula-2
22 lines
675 B
Modula-2
module github.com/btcsuite/btcd/btcutil/psbt
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/btcsuite/btcd v0.22.0-beta.0.20220111032746-97732e52810c
|
|
github.com/btcsuite/btcd/btcec/v2 v2.1.3
|
|
github.com/btcsuite/btcd/btcutil v1.1.0
|
|
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1
|
|
github.com/davecgh/go-spew v1.1.1
|
|
)
|
|
|
|
require (
|
|
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
|
|
github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect
|
|
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
|
|
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
|
|
)
|
|
|
|
replace github.com/btcsuite/btcd/btcutil => ../
|
|
|
|
replace github.com/btcsuite/btcd => ../..
|