mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
htlcswitch: update tests to adhere to new FeeEstimator changes
This commit is contained in:
parent
3c4a6f42fa
commit
3aabbce551
@ -1511,10 +1511,13 @@ func TestChannelLinkBandwidthConsistency(t *testing.T) {
|
|||||||
)
|
)
|
||||||
|
|
||||||
estimator := &lnwallet.StaticFeeEstimator{
|
estimator := &lnwallet.StaticFeeEstimator{
|
||||||
FeeRate: 24,
|
FeeRate: 24,
|
||||||
Confirmation: 6,
|
|
||||||
}
|
}
|
||||||
feePerKw := btcutil.Amount(estimator.EstimateFeePerWeight(1) * 1000)
|
feePerWeight, err := estimator.EstimateFeePerWeight(1)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to query fee estimator: %v", err)
|
||||||
|
}
|
||||||
|
feePerKw := feePerWeight * 1000
|
||||||
htlcFee := lnwire.NewMSatFromSatoshis(
|
htlcFee := lnwire.NewMSatFromSatoshis(
|
||||||
btcutil.Amount((int64(feePerKw) * lnwallet.HtlcWeight) / 1000),
|
btcutil.Amount((int64(feePerKw) * lnwallet.HtlcWeight) / 1000),
|
||||||
)
|
)
|
||||||
@ -1643,10 +1646,13 @@ func TestChannelLinkBandwidthConsistencyOverflow(t *testing.T) {
|
|||||||
)
|
)
|
||||||
|
|
||||||
estimator := &lnwallet.StaticFeeEstimator{
|
estimator := &lnwallet.StaticFeeEstimator{
|
||||||
FeeRate: 24,
|
FeeRate: 24,
|
||||||
Confirmation: 6,
|
|
||||||
}
|
}
|
||||||
feePerKw := btcutil.Amount(estimator.EstimateFeePerWeight(1) * 1000)
|
feePerWeight, err := estimator.EstimateFeePerWeight(1)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to query fee estimator: %v", err)
|
||||||
|
}
|
||||||
|
feePerKw := feePerWeight * 1000
|
||||||
|
|
||||||
addLinkHTLC := func(amt lnwire.MilliSatoshi) [32]byte {
|
addLinkHTLC := func(amt lnwire.MilliSatoshi) [32]byte {
|
||||||
invoice, htlc, err := generatePayment(amt, amt, 5, mockBlob)
|
invoice, htlc, err := generatePayment(amt, amt, 5, mockBlob)
|
||||||
|
@ -172,10 +172,13 @@ func createTestChannel(alicePrivKey, bobPrivKey []byte,
|
|||||||
}
|
}
|
||||||
|
|
||||||
estimator := &lnwallet.StaticFeeEstimator{
|
estimator := &lnwallet.StaticFeeEstimator{
|
||||||
FeeRate: 24,
|
FeeRate: 24,
|
||||||
Confirmation: 6,
|
|
||||||
}
|
}
|
||||||
feePerKw := btcutil.Amount(estimator.EstimateFeePerWeight(1) * 1000)
|
feePerWeight, err := estimator.EstimateFeePerWeight(1)
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, nil, nil, err
|
||||||
|
}
|
||||||
|
feePerKw := btcutil.Amount(feePerWeight * 1000)
|
||||||
commitFee := (feePerKw * btcutil.Amount(724)) / 1000
|
commitFee := (feePerKw * btcutil.Amount(724)) / 1000
|
||||||
|
|
||||||
const broadcastHeight = 1
|
const broadcastHeight = 1
|
||||||
|
Loading…
Reference in New Issue
Block a user