Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
timeshifting transient verb
  • Loading branch information
smk762 committed Oct 17, 2024
commit 6ef00806ae2d9d14156cd938bb21f3f5475085b2
4 changes: 2 additions & 2 deletions src/komodo_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down