descriptor: Be able to get the pubkeys involved in a descriptor

This commit is contained in:
Ava Chow
2023-12-20 18:11:49 -05:00
parent ef6745879d
commit fe67841464
3 changed files with 50 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ public:
std::optional<int64_t> ScriptSize() const override { return {}; }
std::optional<int64_t> MaxSatisfactionWeight(bool) const override { return {}; }
std::optional<int64_t> MaxSatisfactionElems() const override { return {}; }
void GetPubKeys(std::set<CPubKey>& pubkeys, std::set<CExtPubKey>& ext_pubs) const override {}
};
BOOST_FIXTURE_TEST_CASE(wallet_load_descriptors, TestingSetup)