dcrd/require.go
Donald Adu-Poku 57ffde8c30 multi: Start dcrec/secp256k1 v4 module dev cycle.
This updates the dcrec/secp256k1 module
version to v4 and updates import and dep sites.
2020-12-16 16:30:24 -06:00

18 lines
563 B
Go

// Copyright (c) 2019-2020 The Decred developers
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
// This file exists to prevent go mod tidy from removing requires for newer
// module versions that are not yet fully integrated and to allow them to be
// automatically discovered by the testing infrastructure.
//
// It is excluded from the build to avoid including unused modules in the final
// binary.
package main
import (
_ "github.com/decred/dcrd/bech32"
_ "github.com/decred/dcrd/dcrec/secp256k1/v4"
)