File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ BOOST_AUTO_TEST_SUITE(span_tests)
53
53
// aren't compatible with Spans at compile time.
54
54
//
55
55
// Previously there was a bug where writing a SFINAE check for vector<bool> was
56
- // not possible, because in libstdc++ vector<bool> has a data() memeber
56
+ // not possible, because in libstdc++ vector<bool> has a data() member
57
57
// returning void*, and the Span template guide ignored the data() return value,
58
58
// so the template substitution would succeed, but the constructor would fail,
59
59
// resulting in a fatal compile error, rather than a SFINAE error that could be
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ class WalletStorage
52
52
virtual bool WithEncryptionKey (std::function<bool (const CKeyingMaterial&)> cb) const = 0;
53
53
virtual bool HasEncryptionKeys () const = 0;
54
54
virtual bool IsLocked () const = 0;
55
- // ! Callback function for after TopUp completes containining any scripts that were added by a SPKMan
55
+ // ! Callback function for after TopUp completes containing any scripts that were added by a SPKMan
56
56
virtual void TopUpCallback (const std::set<CScript>&, ScriptPubKeyMan*) = 0;
57
57
};
58
58
You can’t perform that action at this time.
0 commit comments