mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
0b4e03f5fc
With go 1.17 a change to the build flags was implemented: https://go.googlesource.com/proposal/+/master/design/draft-gobuild.md The formatter now automatically adds the forward-compatible build tag format and the linter checks for them, so we need to include them in our code.
40 lines
1.4 KiB
Go
40 lines
1.4 KiB
Go
//go:build signrpc
|
|
// +build signrpc
|
|
|
|
package signrpc
|
|
|
|
import (
|
|
"github.com/lightningnetwork/lnd/input"
|
|
"github.com/lightningnetwork/lnd/keychain"
|
|
"github.com/lightningnetwork/lnd/macaroons"
|
|
)
|
|
|
|
// Config is the primary configuration struct for the signer RPC server. It
|
|
// contains all the items required for the signer rpc server to carry out its
|
|
// duties. The fields with struct tags are meant to be parsed as normal
|
|
// configuration options, while if able to be populated, the latter fields MUST
|
|
// also be specified.
|
|
type Config struct {
|
|
// SignerMacPath is the path for the signer macaroon. If unspecified
|
|
// then we assume that the macaroon will be found under the network
|
|
// directory, named DefaultSignerMacFilename.
|
|
SignerMacPath string `long:"signermacaroonpath" description:"Path to the signer macaroon"`
|
|
|
|
// NetworkDir is the main network directory wherein the signer rpc
|
|
// server will find the macaroon named DefaultSignerMacFilename.
|
|
NetworkDir string
|
|
|
|
// MacService is the main macaroon service that we'll use to handle
|
|
// authentication for the signer rpc server.
|
|
MacService *macaroons.Service
|
|
|
|
// Signer is the signer instance that backs the signer RPC server. The
|
|
// job of the signer RPC server is simply to proxy valid requests to
|
|
// the active signer instance.
|
|
Signer input.Signer
|
|
|
|
// KeyRing is an interface that the signer will use to derive any keys
|
|
// for signing messages.
|
|
KeyRing keychain.SecretKeyRing
|
|
}
|