diff --git a/src/lib/block_notify.cpp b/src/lib/block_notify.cpp index 37b5b2f..0dab659 100644 --- a/src/lib/block_notify.cpp +++ b/src/lib/block_notify.cpp @@ -181,7 +181,7 @@ void onWebsocketBlockMessage(esp_websocket_event_data_t *event_data) } void processNewBlock(uint32_t newBlockHeight) { - if (currentBlockHeight == newBlockHeight) + if (currentBlockHeight <= newBlockHeight) { return; }