Skip to content

Commit

Permalink
Update src/validation.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
prasannavl authored Nov 17, 2022
1 parent 0775e02 commit 1b7dd84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2537,7 +2537,7 @@ static void LogApplyCustomTx(const CTransaction &tx, const int64_t start) {
LogPrint(BCLog::BENCH, " - ApplyCustomTx: %s Type: %s Time: %.2fms\n", tx.GetHash().ToString(), ToString(GuessCustomTxType(tx, metadata, false)), (GetTimeMicros() - start) * MILLI);
} else if (LogAcceptCategory(BCLog::CUSTOMTXBENCH)) {
std::vector<unsigned char> metadata;
LogPrint(BCLog::CUSTOMTXBENCH, "ApplyCustomTx: %s Type: %s Time: %.2fms\n", tx.GetHash().ToString(), ToString(GuessCustomTxType(tx, metadata, false)), (GetTimeMicros() - start) * MILLI);
LogPrint(BCLog::CUSTOMTXBENCH, "Bench::ApplyCustomTx: %s Type: %s Time: %.2fms\n", tx.GetHash().ToString(), ToString(GuessCustomTxType(tx, metadata, false)), (GetTimeMicros() - start) * MILLI);
}
}

Expand Down

0 comments on commit 1b7dd84

Please sign in to comment.