@@ -19,6 +19,7 @@ import (
1919 "github.com/lightninglabs/taproot-assets/asset"
2020 "github.com/lightninglabs/taproot-assets/fn"
2121 "github.com/lightninglabs/taproot-assets/internal/test"
22+ "github.com/lightninglabs/taproot-assets/lndservices"
2223 "github.com/lightninglabs/taproot-assets/proof"
2324 "github.com/lightninglabs/taproot-assets/rpcutils"
2425 "github.com/lightninglabs/taproot-assets/tappsbt"
@@ -59,7 +60,7 @@ func testMintFundSealAssets(t *harnessTest) {
5960 ctxt , cancel := context .WithTimeout (ctxb , defaultWaitTimeout )
6061 defer cancel ()
6162
62- aliceLndKeyRing := taprootassets .NewLndRpcKeyRing (
63+ aliceLndKeyRing := lndservices .NewLndRpcKeyRing (
6364 & aliceLndClient .LndServices ,
6465 )
6566
@@ -219,7 +220,7 @@ func testMintFundSealAssets(t *harnessTest) {
219220 // Now we can construct any asset group witnesses needed. Before
220221 // performing any signing, we'll create a GenesisSigner backed by
221222 // Alice's LND node, which also derived all keypairs so far.
222- aliceLndSigner := taprootassets .NewLndRpcVirtualTxSigner (
223+ aliceLndSigner := lndservices .NewLndRpcVirtualTxSigner (
223224 & aliceLndClient .LndServices ,
224225 )
225226
@@ -593,7 +594,7 @@ func testMintExternalGroupKeyChantools(t *harnessTest) {
593594// Derive a random key on an LND node, with a key family not matching the
594595// Taproot Assets key family.
595596func deriveRandomKey (t * testing.T , ctxt context.Context ,
596- keyRing * taprootassets .LndRpcKeyRing ) keychain.KeyDescriptor {
597+ keyRing * lndservices .LndRpcKeyRing ) keychain.KeyDescriptor {
597598
598599 var (
599600 randFam = test .RandInt31n (math .MaxInt32 )
0 commit comments