From b03b20685a3a85c9664a7c1b4d37a49d27b056de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C5=91rinc?= Date: Fri, 23 Feb 2024 20:25:59 +0100 Subject: [PATCH] Fix CI-detected codespell warnings --- src/test/span_tests.cpp | 2 +- src/wallet/scriptpubkeyman.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/span_tests.cpp b/src/test/span_tests.cpp index f6cac10b09b..aae61990f79 100644 --- a/src/test/span_tests.cpp +++ b/src/test/span_tests.cpp @@ -53,7 +53,7 @@ BOOST_AUTO_TEST_SUITE(span_tests) // aren't compatible with Spans at compile time. // // Previously there was a bug where writing a SFINAE check for vector was -// not possible, because in libstdc++ vector has a data() memeber +// not possible, because in libstdc++ vector has a data() member // returning void*, and the Span template guide ignored the data() return value, // 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 diff --git a/src/wallet/scriptpubkeyman.h b/src/wallet/scriptpubkeyman.h index 04f7f89d684..2d83ae556f7 100644 --- a/src/wallet/scriptpubkeyman.h +++ b/src/wallet/scriptpubkeyman.h @@ -52,7 +52,7 @@ public: virtual bool WithEncryptionKey(std::function cb) const = 0; virtual bool HasEncryptionKeys() 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&, ScriptPubKeyMan*) = 0; };