From 6ef00806ae2d9d14156cd938bb21f3f5475085b2 Mon Sep 17 00:00:00 2001 From: smk762 Date: Thu, 17 Oct 2024 18:44:18 +0800 Subject: [PATCH] timeshifting transient verb --- src/komodo_utils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/komodo_utils.cpp b/src/komodo_utils.cpp index 78e50db877..3964e28f94 100644 --- a/src/komodo_utils.cpp +++ b/src/komodo_utils.cpp @@ -1006,10 +1006,10 @@ void komodo_args(char *argv0) uint16_t nonz=0; // keep track of # CCs enabled int32_t extralen = 0; - // prevent start old GLEEC chain without datadir specify + // prevent starting old GLEEC chain without datadir specified if (GetArg("-ac_name","") == "GLEEC" && GetArg("-ac_supply",10) == 210000000 && GetArg("-ac_staked",0) == 100) { if (mapArgs.count("-datadir") == 0) { - const std::string strOldGLEECStartUpError = "It's mandatory to launch old GLEEC chain with -datadir specify!"; + const std::string strOldGLEECStartUpError = "It's mandatory to launch old GLEEC chain with -datadir specified!"; std::cerr << strOldGLEECStartUpError << std::endl; throw std::runtime_error(strOldGLEECStartUpError); }