| 1503 | } |
| 1504 | |
| 1505 | std::vector<CKeyID> GetAffectedKeys(const CScript& spk, const SigningProvider& provider) |
| 1506 | { |
| 1507 | std::vector<CScript> dummy; |
| 1508 | FlatSigningProvider out; |
| 1509 | InferDescriptor(spk, provider)->Expand(0, DUMMY_SIGNING_PROVIDER, dummy, out); |
| 1510 | std::vector<CKeyID> ret; |
| 1511 | for (const auto& entry : out.pubkeys) { |
| 1512 | ret.push_back(entry.first); |
| 1513 | } |
| 1514 | return ret; |
| 1515 | } |
| 1516 | |
| 1517 | void LegacyScriptPubKeyMan::MarkPreSplitKeys() |
| 1518 | { |
no test coverage detected