Fix comparison check

This commit is contained in:
Lee Clagett 2024-01-31 19:38:57 -05:00
parent 706ca91814
commit 4ad15cdb86

View file

@ -1453,7 +1453,7 @@ namespace db
if (*hash != chain.front())
{
if (current < get_checkpoints().get_max_height())
if (current <= get_checkpoints().get_max_height())
{
MERROR("Attempting rollback past last checkpoint; invalid daemon chain response");
return {lws::error::bad_blockchain};