0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-10 10:52:31 -05:00

Fix CI-detected codespell warnings

This commit is contained in:
Lőrinc 2024-02-23 20:25:59 +01:00
parent 1ac627c485
commit b03b20685a
2 changed files with 2 additions and 2 deletions

View file

@ -53,7 +53,7 @@ BOOST_AUTO_TEST_SUITE(span_tests)
// aren't compatible with Spans at compile time. // aren't compatible with Spans at compile time.
// //
// Previously there was a bug where writing a SFINAE check for vector<bool> was // Previously there was a bug where writing a SFINAE check for vector<bool> was
// not possible, because in libstdc++ vector<bool> has a data() memeber // not possible, because in libstdc++ vector<bool> has a data() member
// returning void*, and the Span template guide ignored the data() return value, // returning void*, and the Span template guide ignored the data() return value,
// so the template substitution would succeed, but the constructor would fail, // so the template substitution would succeed, but the constructor would fail,
// resulting in a fatal compile error, rather than a SFINAE error that could be // resulting in a fatal compile error, rather than a SFINAE error that could be

View file

@ -52,7 +52,7 @@ public:
virtual bool WithEncryptionKey(std::function<bool (const CKeyingMaterial&)> cb) const = 0; virtual bool WithEncryptionKey(std::function<bool (const CKeyingMaterial&)> cb) const = 0;
virtual bool HasEncryptionKeys() const = 0; virtual bool HasEncryptionKeys() const = 0;
virtual bool IsLocked() const = 0; virtual bool IsLocked() const = 0;
//! Callback function for after TopUp completes containining any scripts that were added by a SPKMan //! Callback function for after TopUp completes containing any scripts that were added by a SPKMan
virtual void TopUpCallback(const std::set<CScript>&, ScriptPubKeyMan*) = 0; virtual void TopUpCallback(const std::set<CScript>&, ScriptPubKeyMan*) = 0;
}; };