input+sweep: log input witness types instead of CSV/CLTV count

This commit is contained in:
Oliver Gugger
2019-10-23 13:00:25 +02:00
parent 8ed7583448
commit 05096b0c2d
4 changed files with 62 additions and 52 deletions

View File

@ -339,7 +339,7 @@ func assertTxFeeRate(t *testing.T, tx *wire.MsgTx,
outputAmt := tx.TxOut[0].Value
fee := btcutil.Amount(inputAmt - outputAmt)
_, txWeight, _, _ := getWeightEstimate(inputs)
_, txWeight := getWeightEstimate(inputs)
expectedFee := expectedFeeRate.FeeForWeight(txWeight)
if fee != expectedFee {