@@ -39,14 +39,14 @@ class InstantSendSigner : public llmq::CRecoveredSigsListener
3939 const CMasternodeSync& m_mn_sync;
4040
4141private:
42- mutable Mutex cs_inputReqests ;
42+ mutable Mutex cs_input_requests ;
4343 mutable Mutex cs_creating;
4444
4545 /* *
4646 * Request ids of inputs that we signed. Used to determine if a recovered signature belongs to an
4747 * in-progress input lock.
4848 */
49- std::unordered_set<uint256, StaticSaltedHasher> inputRequestIds GUARDED_BY (cs_inputReqests );
49+ std::unordered_set<uint256, StaticSaltedHasher> inputRequestIds GUARDED_BY (cs_input_requests );
5050
5151 /* *
5252 * These are the islocks that are currently in the middle of being created. Entries are created when we observed
@@ -68,18 +68,18 @@ class InstantSendSigner : public llmq::CRecoveredSigsListener
6868 void Stop ();
6969
7070 void ClearInputsFromQueue (const std::unordered_set<uint256, StaticSaltedHasher>& ids)
71- EXCLUSIVE_LOCKS_REQUIRED(!cs_inputReqests );
71+ EXCLUSIVE_LOCKS_REQUIRED(!cs_input_requests );
7272
7373 void ClearLockFromQueue (const InstantSendLockPtr& islock)
7474 EXCLUSIVE_LOCKS_REQUIRED(!cs_creating);
7575
7676 [[nodiscard]] MessageProcessingResult HandleNewRecoveredSig (const llmq::CRecoveredSig& recoveredSig) override
77- EXCLUSIVE_LOCKS_REQUIRED(!cs_creating, !cs_inputReqests );
77+ EXCLUSIVE_LOCKS_REQUIRED(!cs_creating, !cs_input_requests );
7878
7979 void ProcessPendingRetryLockTxs (const std::vector<CTransactionRef>& retryTxs)
80- EXCLUSIVE_LOCKS_REQUIRED(!cs_creating, !cs_inputReqests );
80+ EXCLUSIVE_LOCKS_REQUIRED(!cs_creating, !cs_input_requests );
8181 void ProcessTx (const CTransaction& tx, bool fRetroactive , const Consensus::Params& params)
82- EXCLUSIVE_LOCKS_REQUIRED(!cs_creating, !cs_inputReqests );
82+ EXCLUSIVE_LOCKS_REQUIRED(!cs_creating, !cs_input_requests );
8383
8484private:
8585 [[nodiscard]] bool CheckCanLock (const CTransaction& tx, bool printDebug, const Consensus::Params& params) const ;
@@ -95,7 +95,7 @@ class InstantSendSigner : public llmq::CRecoveredSigsListener
9595
9696 [[nodiscard]] bool TrySignInputLocks (const CTransaction& tx, bool allowResigning, Consensus::LLMQType llmqType,
9797 const Consensus::Params& params)
98- EXCLUSIVE_LOCKS_REQUIRED(!cs_inputReqests );
98+ EXCLUSIVE_LOCKS_REQUIRED(!cs_input_requests );
9999 void TrySignInstantSendLock (const CTransaction& tx)
100100 EXCLUSIVE_LOCKS_REQUIRED(!cs_creating);
101101};
0 commit comments