aboutsummaryrefslogtreecommitdiff
path: root/src/logging.h
diff options
context:
space:
mode:
authorJon Atack <jon@atack.com>2023-05-12 01:06:58 +0200
committerJon Atack <jon@atack.com>2023-06-15 10:27:56 -0600
commitdaa5a658c0e79172e4dea0758246f11281790d29 (patch)
treeacf161765213b9f38d6ee956f2033bf3fccd6b82 /src/logging.h
parentcf622b214bfe0a97e403f1e9dc54bf5bbfc59fc3 (diff)
refactor: rename BCLog::BLOCKSTORE to BLOCKSTORAGE
so the enum name is the same as its value, like the other BCLog enums.
Diffstat (limited to 'src/logging.h')
-rw-r--r--src/logging.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logging.h b/src/logging.h
index e7c554e79f..fc03c8eac3 100644
--- a/src/logging.h
+++ b/src/logging.h
@@ -65,7 +65,7 @@ namespace BCLog {
LOCK = (1 << 24),
#endif
UTIL = (1 << 25),
- BLOCKSTORE = (1 << 26),
+ BLOCKSTORAGE = (1 << 26),
TXRECONCILIATION = (1 << 27),
SCAN = (1 << 28),
ALL = ~(uint32_t)0,