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