2022-02-07 13:58:22 +01:00
|
|
|
//go:build buildtagdoesnotexist
|
|
|
|
// +build buildtagdoesnotexist
|
|
|
|
|
|
|
|
package build
|
|
|
|
|
2022-11-11 17:44:37 +01:00
|
|
|
// This file is a workaround to make sure go mod keeps around the btcd
|
2022-02-07 13:58:22 +01:00
|
|
|
// dependencies in the go.sum file that we only use during certain tasks (such
|
|
|
|
// as integration tests or fuzzing) or only for certain operating systems. For
|
|
|
|
// example, the specific btcd import makes sure the indirect dependency
|
|
|
|
// github.com/btcsuite/winsvc is kept in the go.sum file. Because of the build
|
|
|
|
// tag, this dependency never ends up in the final lnd binary.
|
|
|
|
import (
|
|
|
|
_ "github.com/btcsuite/btcd"
|
|
|
|
)
|