Skip to content

Commit

Permalink
timeshifting transient verb
Browse files Browse the repository at this point in the history
  • Loading branch information
smk762 committed Oct 17, 2024
1 parent a2e4e90 commit 6ef0080
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 6ef0080

Please sign in to comment.