1
0
Fork 0
forked from lthn/blockchain

Fix error message grammar in ChainConfig.cmake

Corrected the grammar of the fatal error message when both premine wallet and fresh genesis generation are enabled.
This commit is contained in:
Snider 2025-09-25 21:30:09 +01:00
parent ba059f76d4
commit e3e588846f

View file

@ -16,7 +16,7 @@ set(GENERATE_PREMINE_WALLET OFF CACHE BOOL "Generate premine wallet")
set(PREMINE_WALLET_PASSWORD "" CACHE STRING "Premine wallet password")
if (GENERATE_PREMINE_WALLET AND GENERATE_FRESH_GENESIS)
message(FATAL_ERROR "Genesis can be generatet together with premine wallet")
message(FATAL_ERROR "Genesis can not be generated together with premine wallet")
endif()
if (GENERATE_PREMINE_WALLET)