diff --git a/evernode-license.pdf b/evernode-license.pdf index 2a969155..65964575 100644 Binary files a/evernode-license.pdf and b/evernode-license.pdf differ diff --git a/src/killswitch/killswitch.c b/src/killswitch/killswitch.c index 8c424f90..955c0ac8 100644 --- a/src/killswitch/killswitch.c +++ b/src/killswitch/killswitch.c @@ -14,12 +14,15 @@ uint64_t build_time_sec = 0; */ bool kill_switch(const uint64_t epoch_ms) { - if (build_time_sec == 0) - { - char *eptr; - build_time_sec = strtoull(build_time_sec_str, &eptr, 10); - } + // if (build_time_sec == 0) + // { + // char *eptr; + // build_time_sec = strtoull(build_time_sec_str, &eptr, 10); + // } - const uint64_t epoch_sec = epoch_ms / 1000; - return !(epoch_sec > build_time_sec && (epoch_sec - build_time_sec) <= MAX_LIMIT_SEC); + // const uint64_t epoch_sec = epoch_ms / 1000; + // return !(epoch_sec > build_time_sec && (epoch_sec - build_time_sec) <= MAX_LIMIT_SEC); + + // Commented out kill_switch code in case if it's needed in the future. + return false; } \ No newline at end of file