Skip to content

Commit 2a840d1

Browse files
committed
refactor: make linter happy
1 parent ceaf14d commit 2a840d1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/coinjoin/client.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,7 +1113,7 @@ bool CCoinJoinClientSession::JoinExistingQueue(CAmount nBalanceNeedsAnonymized,
11131113
m_clientman.AddUsedMasternode(dsq.masternodeOutpoint);
11141114

11151115
if (connman.IsMasternodeOrDisconnectRequested(dmn->pdmnState->addr)) {
1116-
WalletCJLogPrint(m_wallet,
1116+
WalletCJLogPrint(m_wallet, /* Continued */
11171117
"CCoinJoinClientSession::JoinExistingQueue -- skipping masternode connection, addr=%s\n",
11181118
dmn->pdmnState->addr.ToStringAddrPort());
11191119
continue;
@@ -1125,7 +1125,7 @@ bool CCoinJoinClientSession::JoinExistingQueue(CAmount nBalanceNeedsAnonymized,
11251125
connman.AddPendingMasternode(dmn->proTxHash);
11261126
SetState(POOL_STATE_QUEUE);
11271127
nTimeLastSuccessfulStep = GetTime();
1128-
WalletCJLogPrint(m_wallet,
1128+
WalletCJLogPrint(m_wallet, /* Continued */
11291129
"CCoinJoinClientSession::JoinExistingQueue -- pending connection (from queue): nSessionDenom: "
11301130
"%d (%s), addr=%s\n",
11311131
nSessionDenom, CoinJoin::DenominationToString(nSessionDenom),
@@ -1179,7 +1179,7 @@ bool CCoinJoinClientSession::StartNewQueue(CAmount nBalanceNeedsAnonymized, CCon
11791179
int64_t nLastDsq = m_mn_metaman.GetMetaInfo(dmn->proTxHash)->GetLastDsq();
11801180
int64_t nDsqThreshold = m_mn_metaman.GetDsqThreshold(dmn->proTxHash, nMnCount);
11811181
if (nLastDsq != 0 && nDsqThreshold > m_mn_metaman.GetDsqCount()) {
1182-
WalletCJLogPrint(m_wallet,
1182+
WalletCJLogPrint(m_wallet, /* Continued */
11831183
"CCoinJoinClientSession::StartNewQueue -- Too early to mix on this masternode!" /* Continued */
11841184
" masternode=%s addr=%s nLastDsq=%d nDsqThreshold=%d nDsqCount=%d\n",
11851185
dmn->proTxHash.ToString(), dmn->pdmnState->addr.ToStringAddrPort(), nLastDsq,
@@ -1212,7 +1212,7 @@ bool CCoinJoinClientSession::StartNewQueue(CAmount nBalanceNeedsAnonymized, CCon
12121212
pendingDsaRequest = CPendingDsaRequest(dmn->pdmnState->addr, CCoinJoinAccept(nSessionDenom, txMyCollateral));
12131213
SetState(POOL_STATE_QUEUE);
12141214
nTimeLastSuccessfulStep = GetTime();
1215-
WalletCJLogPrint(
1215+
WalletCJLogPrint( /* Continued */
12161216
m_wallet, "CCoinJoinClientSession::StartNewQueue -- pending connection, nSessionDenom: %d (%s), addr=%s\n",
12171217
nSessionDenom, CoinJoin::DenominationToString(nSessionDenom), dmn->pdmnState->addr.ToStringAddrPort());
12181218
strAutoDenomResult = _("Trying to connect…");

0 commit comments

Comments
 (0)