-
Notifications
You must be signed in to change notification settings - Fork 593
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
txsizes: bump required Golang version to v1.18
- Loading branch information
Showing
2 changed files
with
18 additions
and
32 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,15 +1,17 @@ | ||
module github.com/btcsuite/btcwallet/wallet/txsizes | ||
|
||
go 1.12 | ||
require github.com/btcsuite/btcd v0.23.4 | ||
|
||
require ( | ||
github.com/btcsuite/btcd v0.23.4 | ||
github.com/fsnotify/fsnotify v1.5.4 // 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/btcsuite/btcd/btcec/v2 v2.1.3 // indirect | ||
github.com/btcsuite/btcd/btcutil v1.1.0 // 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/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