File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class CBitcoinLevelDBLogger : public leveldb::Logger {
19
19
public:
20
20
// This code is adapted from posix_logger.h, which is why it is using vsprintf.
21
21
// Please do not do this in normal code
22
- virtual void Logv (const char * format, va_list ap) override {
22
+ void Logv (const char * format, va_list ap) override {
23
23
if (!LogAcceptCategory (BCLog::LEVELDB)) {
24
24
return ;
25
25
}
Original file line number Diff line number Diff line change @@ -97,14 +97,14 @@ class CBasicKeyStore : public CKeyStore
97
97
}
98
98
return false ;
99
99
}
100
- virtual bool AddCScript (const CScript& redeemScript) override ;
101
- virtual bool HaveCScript (const CScriptID &hash) const override ;
102
- virtual bool GetCScript (const CScriptID &hash, CScript& redeemScriptOut) const override ;
100
+ bool AddCScript (const CScript& redeemScript) override ;
101
+ bool HaveCScript (const CScriptID &hash) const override ;
102
+ bool GetCScript (const CScriptID &hash, CScript& redeemScriptOut) const override ;
103
103
104
- virtual bool AddWatchOnly (const CScript &dest) override ;
105
- virtual bool RemoveWatchOnly (const CScript &dest) override ;
106
- virtual bool HaveWatchOnly (const CScript &dest) const override ;
107
- virtual bool HaveWatchOnly () const override ;
104
+ bool AddWatchOnly (const CScript &dest) override ;
105
+ bool RemoveWatchOnly (const CScript &dest) override ;
106
+ bool HaveWatchOnly (const CScript &dest) const override ;
107
+ bool HaveWatchOnly () const override ;
108
108
};
109
109
110
110
typedef std::vector<unsigned char , secure_allocator<unsigned char > > CKeyingMaterial;
You can’t perform that action at this time.
0 commit comments