Skip to content

Commit 84acd84

Browse files
author
deeponion
committed
remove some debug messages
1 parent 5268f84 commit 84acd84

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2626,7 +2626,7 @@ bool ProcessBlock(CNode* pfrom, CBlock* pblock)
26262626
mapOrphanBlocksByPrev.erase(hashPrev);
26272627
}
26282628

2629-
printf("ProcessBlock: ACCEPTED\n");
2629+
// printf("ProcessBlock: ACCEPTED\n");
26302630

26312631
// DeepOnion: if responsible for sync-checkpoint send it
26322632
if (pfrom && !CSyncCheckpoint::strMasterPrivKey.empty())

src/qt/transactionrecord.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const CWallet *
6767
if (mi != wtx.mapValue.end() && !mi->second.empty())
6868
{
6969
sub.narration = mi->second;
70-
LogPrintf("CREDIT | ADDED NARRATION: %s from POSITION: %s\n", sub.narration.c_str(), mi->first.c_str());
70+
// LogPrintf("CREDIT | ADDED NARRATION: %s from POSITION: %s\n", sub.narration.c_str(), mi->first.c_str());
7171
}
7272

7373
if (wtx.IsCoinBase())
@@ -157,7 +157,7 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const CWallet *
157157
if (mi != wtx.mapValue.end() && !mi->second.empty())
158158
{
159159
sub.narration = mi->second;
160-
LogPrintf("DEBIT | ADDED NARRATION: %s from POSITION: %s\n", sub.narration.c_str(), mi->first.c_str());
160+
// LogPrintf("DEBIT | ADDED NARRATION: %s from POSITION: %s\n", sub.narration.c_str(), mi->first.c_str());
161161
}
162162

163163
int64 nValue = txout.nValue;

0 commit comments

Comments
 (0)