refactor: make SetNull in CJ classes virtual to prevent warning from compiler

This commit is contained in:
Konstantin Akimov 2024-03-03 18:06:26 +07:00
parent 6bc14a35e5
commit e7e355ba8b
No known key found for this signature in database
GPG Key ID: 2176C4A5D01EA524
3 changed files with 3 additions and 3 deletions

View File

@ -154,7 +154,7 @@ private:
void RelayIn(const CCoinJoinEntry& entry, CConnman& connman) const;
void SetNull() EXCLUSIVE_LOCKS_REQUIRED(cs_coinjoin);
void SetNull() override EXCLUSIVE_LOCKS_REQUIRED(cs_coinjoin);
public:
explicit CCoinJoinClientSession(CWallet& wallet, CoinJoinWalletManager& walletman, const CMasternodeSync& mn_sync,

View File

@ -307,7 +307,7 @@ protected:
CMutableTransaction finalMutableTransaction GUARDED_BY(cs_coinjoin); // the finalized transaction ready for signing
void SetNull() EXCLUSIVE_LOCKS_REQUIRED(cs_coinjoin);
virtual void SetNull() EXCLUSIVE_LOCKS_REQUIRED(cs_coinjoin);
bool IsValidInOuts(const CTxMemPool& mempool, const std::vector<CTxIn>& vin, const std::vector<CTxOut>& vout, PoolMessage& nMessageIDRet, bool* fConsumeCollateralRet) const;

View File

@ -77,7 +77,7 @@ private:
void ProcessDSVIN(CNode& peer, CDataStream& vRecv) LOCKS_EXCLUDED(cs_coinjoin);
void ProcessDSSIGNFINALTX(CDataStream& vRecv) LOCKS_EXCLUDED(cs_coinjoin);
void SetNull() EXCLUSIVE_LOCKS_REQUIRED(cs_coinjoin);
void SetNull() override EXCLUSIVE_LOCKS_REQUIRED(cs_coinjoin);
public:
explicit CCoinJoinServer(CChainState& chainstate, CConnman& _connman, CTxMemPool& mempool, const CMasternodeSync& mn_sync) :