Skip to content

Commit 393e4ff

Browse files
committed
Move "End Dash" comment below "ALERT"
When adding new entries here, we'll otherwise get confused with ordering and might end up forgetting that adding something Dash specific must continue with the bit after 43.
1 parent 5429bc3 commit 393e4ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,8 @@ const CLogCategoryDesc LogCategories[] =
298298
{BCLog::MNSYNC, "mnsync"},
299299
{BCLog::PRIVATESEND, "privatesend"},
300300
{BCLog::SPORK, "spork"},
301-
//End Dash
302301
{BCLog::ALERT, "alert"},
302+
//End Dash
303303

304304
};
305305

src/util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ namespace BCLog {
128128
MNSYNC = ((uint64_t)1 << 40),
129129
PRIVATESEND = ((uint64_t)1 << 41),
130130
SPORK = ((uint64_t)1 << 42),
131-
//End Dash
132131
ALERT = ((uint64_t)1 << 43),
132+
//End Dash
133133

134134
ALL = ~(uint64_t)0,
135135
};

0 commit comments

Comments
 (0)