diff --git a/src/locales/en.json b/src/locales/en.json index 57c280b51..638dc508b 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -45,7 +45,7 @@ "halving": { "congratulations": "Congratulations", "the": "the", - "actived": "is atived on block", + "actived": "is activated on block", "halving": "halving", "next": "next", "and": "and", diff --git a/src/pages/Halving/index.tsx b/src/pages/Halving/index.tsx index ae3741da7..a688b5f61 100644 --- a/src/pages/Halving/index.tsx +++ b/src/pages/Halving/index.tsx @@ -76,6 +76,10 @@ export const HalvingCountdownPage = () => { }) const shareUrl = `https://x.com/share?text=${encodeURIComponent(shareText)}&hashtags=CKB%2CPoW%2CHalving` const getTargetBlockByHavingCount = (count: number) => { + // FIXME: this is a hot fix to the halving block number + if (count === 1) { + return `11487788` + } return ( EPOCHS_PER_HALVING * (statistics.epochInfo.epochLength ? parseInt(statistics.epochInfo.epochLength, 10) : 1800) *