diff --git a/lntest/btcd.go b/lntest/btcd.go index 603bb3af..3c50e551 100644 --- a/lntest/btcd.go +++ b/lntest/btcd.go @@ -35,6 +35,10 @@ type BtcdBackendConfig struct { minerAddr string } +// A compile time assertion to ensure BtcdBackendConfig meets the BackendConfig +// interface. +var _ BackendConfig = (*BtcdBackendConfig)(nil) + // GenArgs returns the arguments needed to be passed to LND at startup for // using this node as a chain backend. func (b BtcdBackendConfig) GenArgs() []string { diff --git a/lntest/neutrino.go b/lntest/neutrino.go index a8275fc6..1a5497b9 100644 --- a/lntest/neutrino.go +++ b/lntest/neutrino.go @@ -14,6 +14,10 @@ type NeutrinoBackendConfig struct { minerAddr string } +// A compile time assertion to ensure NeutrinoBackendConfig meets the +// BackendConfig interface. +var _ BackendConfig = (*NeutrinoBackendConfig)(nil) + // GenArgs returns the arguments needed to be passed to LND at startup for // using this node as a chain backend. func (b NeutrinoBackendConfig) GenArgs() []string {