mirror of
https://github.com/lightninglabs/loop
synced 2024-11-17 21:25:56 +00:00
test: allow custom fee estimates
This commit is contained in:
parent
9f25fdd0bb
commit
09029bfdec
@ -6,12 +6,12 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/btcsuite/btcd/chaincfg"
|
||||
"github.com/lightningnetwork/lnd/lntypes"
|
||||
"github.com/lightningnetwork/lnd/zpay32"
|
||||
|
||||
"github.com/btcsuite/btcd/wire"
|
||||
"github.com/lightninglabs/loop/lndclient"
|
||||
"github.com/lightningnetwork/lnd/chainntnfs"
|
||||
"github.com/lightningnetwork/lnd/lntypes"
|
||||
"github.com/lightningnetwork/lnd/lnwallet"
|
||||
"github.com/lightningnetwork/lnd/zpay32"
|
||||
)
|
||||
|
||||
var testStartingHeight = int32(600)
|
||||
@ -20,7 +20,9 @@ var testStartingHeight = int32(600)
|
||||
// tests.
|
||||
func NewMockLnd() *LndMockServices {
|
||||
lightningClient := &mockLightningClient{}
|
||||
walletKit := &mockWalletKit{}
|
||||
walletKit := &mockWalletKit{
|
||||
feeEstimates: make(map[int32]lnwallet.SatPerKWeight),
|
||||
}
|
||||
chainNotifier := &mockChainNotifier{}
|
||||
signer := &mockSigner{}
|
||||
invoices := &mockInvoices{}
|
||||
@ -197,3 +199,9 @@ func (s *LndMockServices) DecodeInvoice(request string) (*zpay32.Invoice,
|
||||
|
||||
return zpay32.Decode(request, s.ChainParams)
|
||||
}
|
||||
|
||||
func (s *LndMockServices) SetFeeEstimate(confTarget int32,
|
||||
feeEstimate lnwallet.SatPerKWeight) {
|
||||
|
||||
s.WalletKit.(*mockWalletKit).feeEstimates[confTarget] = feeEstimate
|
||||
}
|
||||
|
@ -8,15 +8,19 @@ import (
|
||||
"github.com/btcsuite/btcd/chaincfg/chainhash"
|
||||
"github.com/btcsuite/btcd/wire"
|
||||
"github.com/btcsuite/btcutil"
|
||||
"github.com/lightninglabs/loop/lndclient"
|
||||
"github.com/lightningnetwork/lnd/keychain"
|
||||
"github.com/lightningnetwork/lnd/lnwallet"
|
||||
)
|
||||
|
||||
type mockWalletKit struct {
|
||||
lnd *LndMockServices
|
||||
keyIndex int32
|
||||
lnd *LndMockServices
|
||||
keyIndex int32
|
||||
feeEstimates map[int32]lnwallet.SatPerKWeight
|
||||
}
|
||||
|
||||
var _ lndclient.WalletKitClient = (*mockWalletKit)(nil)
|
||||
|
||||
func (m *mockWalletKit) DeriveNextKey(ctx context.Context, family int32) (
|
||||
*keychain.KeyDescriptor, error) {
|
||||
|
||||
@ -87,9 +91,15 @@ func (m *mockWalletKit) SendOutputs(ctx context.Context, outputs []*wire.TxOut,
|
||||
|
||||
func (m *mockWalletKit) EstimateFee(ctx context.Context, confTarget int32) (
|
||||
lnwallet.SatPerKWeight, error) {
|
||||
|
||||
if confTarget <= 1 {
|
||||
return 0, errors.New("conf target must be greater than 1")
|
||||
}
|
||||
|
||||
return 10000, nil
|
||||
feeEstimate, ok := m.feeEstimates[confTarget]
|
||||
if !ok {
|
||||
return 10000, nil
|
||||
}
|
||||
|
||||
return feeEstimate, nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user