Skip to content

Commit 4394aa2

Browse files
committed
lndservices: move daemon adapters, msg transport, and chain bridge
This commit moves the daemon adapters service, message transport client service, and chain bridge service into the new lndservices package. These three services are moved together because the daemon adapters service depends on the other two. This commit should compile, all unit tests should pass, and the linter should succeed.
1 parent 0a21311 commit 4394aa2

File tree

7 files changed

+767
-739
lines changed

7 files changed

+767
-739
lines changed

config.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import (
99
"github.com/lightninglabs/lndclient"
1010
"github.com/lightninglabs/taproot-assets/address"
1111
"github.com/lightninglabs/taproot-assets/authmailbox"
12+
"github.com/lightninglabs/taproot-assets/lndservices"
1213
"github.com/lightninglabs/taproot-assets/monitoring"
1314
"github.com/lightninglabs/taproot-assets/proof"
1415
"github.com/lightninglabs/taproot-assets/rfq"
@@ -189,7 +190,7 @@ type Config struct {
189190

190191
// FsmDaemonAdapters is a set of adapters that allow a state machine to
191192
// interact with external daemons.
192-
FsmDaemonAdapters *LndFsmDaemonAdapters
193+
FsmDaemonAdapters *lndservices.LndFsmDaemonAdapters
193194

194195
// SupplyCommitManager is a service that is used to manage supply
195196
// commitments for assets. Supply commitments are issuer published

0 commit comments

Comments
 (0)