This repository has been archived by the owner on Sep 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
force usage of github.com/btcsuite/btcd v0.22.1 or newer (#254)
- Loading branch information
1 parent
9923194
commit 041d78f
Showing
3 changed files
with
56 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
//go:build !go1.17 | ||
// +build !go1.17 | ||
|
||
package crypto | ||
|
||
// This import allows us to force a minimum version of github.com/btcsuite/btcd, | ||
// which otherwise causes problems when `go mod tidy` tries to please Go 1.16 | ||
// (which we don't care about any more at this point). | ||
// | ||
// See https://github.com/libp2p/go-libp2p-core/issues/252 for details. | ||
import ( | ||
_ "github.com/btcsuite/btcd/chaincfg" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters