sweep,rpc: honor minConfs paramater when SendAll is set

This commit is contained in:
Juan Pablo Civile
2021-04-12 15:38:35 -03:00
parent 213b264e4c
commit 09c4ff509d
3 changed files with 7 additions and 5 deletions

View File

@@ -289,7 +289,7 @@ func TestCraftSweepAllTxCoinSelectFail(t *testing.T) {
_, err := CraftSweepAllTx(
0, 100, 10, nil, nil, coinSelectLocker, utxoSource,
utxoLocker, nil, nil,
utxoLocker, nil, nil, 0,
)
// Since we instructed the coin select locker to fail above, we should
@@ -315,7 +315,7 @@ func TestCraftSweepAllTxUnknownWitnessType(t *testing.T) {
_, err := CraftSweepAllTx(
0, 100, 10, nil, nil, coinSelectLocker, utxoSource,
utxoLocker, nil, nil,
utxoLocker, nil, nil, 0,
)
// Since passed in a p2wsh output, which is unknown, we should fail to
@@ -350,7 +350,7 @@ func TestCraftSweepAllTx(t *testing.T) {
sweepPkg, err := CraftSweepAllTx(
0, 100, 10, nil, deliveryAddr, coinSelectLocker, utxoSource,
utxoLocker, feeEstimator, signer,
utxoLocker, feeEstimator, signer, 0,
)
if err != nil {
t.Fatalf("unable to make sweep tx: %v", err)