Skip to content

Commit da5ede5

Browse files
author
Micah Riggan
committed
fix(node): fix some logging
benchmark and negative fee are too verbose
1 parent d8dea8b commit da5ede5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/bitcore-node/src/models/transaction.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ export class Transaction extends BaseModel<ITransaction> {
224224
// TODO: Fee is negative for mempool txs
225225
fee = groupedSpends[txid].total - groupedMints[txid].total;
226226
if (fee < 0) {
227-
console.error(txid, groupedSpends[txid], groupedMints[txid]);
227+
logger.debug('negative fee', txid, groupedSpends[txid], groupedMints[txid]);
228228
}
229229
}
230230

packages/bitcore-node/test/benchmark/benchmark.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,12 @@ function startBenchmarkDatabase() {
110110
async function benchmark(blockCount: number, blockSizeMb: number) {
111111
await resetDatabase();
112112
const startTime = new Date();
113+
console.log('Adding blocks');
113114
for (let block of generateBlocks(blockCount, blockSizeMb)) {
114-
console.log('Adding block', block.hash);
115+
process.stdout.write('.');
115116
await BlockModel.addBlock({ block, chain: 'BENCH', network: 'MARK', initialSyncComplete: false });
116117
}
118+
process.stdout.write('\n');
117119
const endTime = new Date();
118120
const time = endTime.getTime() - startTime.getTime();
119121
const seconds = time / 1000;

0 commit comments

Comments
 (0)