diff --git a/src/baseClient.ts b/src/baseClient.ts index 8f6863d..6e9d3f7 100644 --- a/src/baseClient.ts +++ b/src/baseClient.ts @@ -58,7 +58,10 @@ export default abstract class BaseClient { } public get isSynced() { - return this._latestPeriod === this.getCurrentPeriod(); + return ( + this._latestPeriod === this.getCurrentPeriod() && + this.getLastBlock() === this.getCurrentBlock() + ); } public get store(): IStore {