File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -415,9 +415,6 @@ FilteredOutputGroups GroupOutputs(const CWallet& wallet,
415
415
// Allowing partial spends means no grouping. Each COutput gets its own OutputGroup
416
416
for (const auto & [type, outputs] : coins.coins ) {
417
417
for (const COutput& output : outputs) {
418
- // Skip outputs we cannot spend
419
- if (!output.spendable ) continue ;
420
-
421
418
// Get mempool info
422
419
size_t ancestors, descendants;
423
420
wallet.chain ().getTransactionAncestry (output.outpoint .hash , ancestors, descendants);
@@ -473,9 +470,6 @@ FilteredOutputGroups GroupOutputs(const CWallet& wallet,
473
470
ScriptPubKeyToOutgroup spk_to_positive_groups_map;
474
471
for (const auto & [type, outs] : coins.coins ) {
475
472
for (const COutput& output : outs) {
476
- // Skip outputs we cannot spend
477
- if (!output.spendable ) continue ;
478
-
479
473
size_t ancestors, descendants;
480
474
wallet.chain ().getTransactionAncestry (output.outpoint .hash , ancestors, descendants);
481
475
You can’t perform that action at this time.
0 commit comments