mod: bump tapd, add replace directive to compile tapd

Because tapd now uses a fork of the SQL migration library, which can
only be used through a replace directive which isn't populated
transitively to other dependent projects, we now need to copy that
directive to every project.
This commit is contained in:
Oliver Gugger 2025-04-25 10:53:16 +02:00
parent 2bc5df281a
commit 059186568f
No known key found for this signature in database
GPG key ID: 8E4256593F177720
5 changed files with 54 additions and 60 deletions

View file

@ -20,7 +20,7 @@ import (
"github.com/lightninglabs/loop/sweep"
"github.com/lightninglabs/loop/sweepbatcher"
"github.com/lightninglabs/loop/utils"
"github.com/lightninglabs/taproot-assets/taprpc/rfqrpc"
"github.com/lightninglabs/taproot-assets/rpcutils"
"github.com/lightningnetwork/lnd/lntypes"
"github.com/lightningnetwork/lnd/routing/route"
"google.golang.org/grpc"
@ -982,7 +982,7 @@ func (s *Client) getAssetRfq(ctx context.Context, quote *LoopOutQuote,
return nil, err
}
prepayAssetRate, err := rfqrpc.UnmarshalFixedPoint(
prepayAssetRate, err := rpcutils.UnmarshalRfqFixedPoint(
prepayRfq.BidAssetRate,
)
if err != nil {
@ -1003,7 +1003,7 @@ func (s *Client) getAssetRfq(ctx context.Context, quote *LoopOutQuote,
return nil, err
}
swapAssetRate, err := rfqrpc.UnmarshalFixedPoint(
swapAssetRate, err := rpcutils.UnmarshalRfqFixedPoint(
swapRfq.BidAssetRate,
)
if err != nil {