mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
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:
parent
2bc5df281a
commit
059186568f
5 changed files with 54 additions and 60 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue