-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #901 from guggero/modules-upgrade
mod: bump Golang min version to v1.18 in all submodules
- Loading branch information
Showing
10 changed files
with
75 additions
and
247 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 |
---|---|---|
@@ -1,19 +1,23 @@ | ||
module github.com/btcsuite/btcwallet/wallet/txauthor | ||
|
||
go 1.12 | ||
|
||
require ( | ||
github.com/btcsuite/btcd v0.23.4 | ||
github.com/btcsuite/btcd/btcutil v1.1.1 | ||
github.com/btcsuite/btcwallet/wallet/txrules v1.2.0 | ||
github.com/btcsuite/btcwallet/wallet/txsizes v1.2.3 | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
) | ||
|
||
require ( | ||
github.com/aead/siphash v1.0.1 // indirect | ||
github.com/btcsuite/btcd/btcec/v2 v2.1.3 // indirect | ||
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 // indirect | ||
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 | ||
github.com/kkdai/bstream v1.0.0 // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/onsi/gomega v1.26.0 // indirect | ||
github.com/rogpeppe/go-internal v1.9.0 // indirect | ||
github.com/stretchr/testify v1.8.2 // indirect | ||
golang.org/x/crypto v0.7.0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
) | ||
|
||
go 1.18 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
module github.com/btcsuite/btcwallet/wallet/txrules | ||
|
||
go 1.12 | ||
|
||
require ( | ||
github.com/btcsuite/btcd v0.23.4 | ||
github.com/btcsuite/btcd/btcutil v1.1.0 | ||
github.com/fsnotify/fsnotify v1.5.4 // indirect | ||
) | ||
|
||
require ( | ||
github.com/aead/siphash v1.0.1 // indirect | ||
github.com/btcsuite/btcd/btcec/v2 v2.1.3 // indirect | ||
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 // indirect | ||
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 | ||
github.com/kkdai/bstream v1.0.0 // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/onsi/gomega v1.26.0 // indirect | ||
github.com/rogpeppe/go-internal v1.9.0 // indirect | ||
github.com/stretchr/testify v1.8.2 // indirect | ||
golang.org/x/crypto v0.7.0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
) | ||
|
||
go 1.18 |
Oops, something went wrong.