diff --git a/packages/state-transition/src/util/weakSubjectivity.ts b/packages/state-transition/src/util/weakSubjectivity.ts index 07f0fe764d6a..4614534bcb27 100644 --- a/packages/state-transition/src/util/weakSubjectivity.ts +++ b/packages/state-transition/src/util/weakSubjectivity.ts @@ -138,7 +138,7 @@ export function ensureWithinWeakSubjectivityPeriod( const clockEpoch = computeEpochAtSlot(getCurrentSlot(config, wsState.genesisTime)); if (clockEpoch > wsStateEpoch + wsPeriod) { throw new Error( - `The downloaded state with epoch ${wsStateEpoch} is not within subjectivity period of ${wsPeriod} from the current epoch ${clockEpoch}. Please verify your checkpoint source` + `The downloaded state with epoch ${wsStateEpoch} is not within weak subjectivity period of ${wsPeriod} from the current epoch ${clockEpoch}. Please verify your checkpoint source` ); } }