2105+ if (depth >= 0 && output.n < it->second.tx->vout.size() &&
2106+ IsMine(it->second.tx->vout[output.n]) == ISMINE_SPENDABLE) {
2107+ CTxDestination address;
2108+ if (ExtractDestination(FindNonChangeParentOutput(*it->second.tx, output.n).scriptPubKey, address)) {
2109+ result[address].emplace_back(
2110+ &it->second, output.n, depth, true /* spendable */, true /* solvable */, false /* safe */);
Why did you change to false for safe here…looks like the old code did true? Does that have any effect?
Why did you change to false for safe here…looks like the old code did true? Does that have any effect?
It has no effect (I’m not even exposing it to Qt any more after 7a7795fdd5fe86b9918b8055666b8365e4342eb6 in #10244) and false seemed like a more correct value.