From 7231cd08997b0aa7481a074bb48ab9bdff5ec777 Mon Sep 17 00:00:00 2001 From: yuriy0803 <68668177+yuriy0803@users.noreply.github.com> Date: Wed, 24 Jul 2024 14:14:31 +0200 Subject: [PATCH] Update application.js --- www/app/controllers/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/app/controllers/application.js b/www/app/controllers/application.js index 6d6ccdc1..c512123d 100644 --- a/www/app/controllers/application.js +++ b/www/app/controllers/application.js @@ -102,7 +102,7 @@ export default Ember.Controller.extend({ nextEpoch: Ember.computed('height', { get() { - var epochOffset = (60000 - (this.getWithDefault('height', 1) % 30000)) * 1000 * this.get('blockTime'); + var epochOffset = (60000 - (this.getWithDefault('height', 1) % 60000)) * 1000 * this.get('blockTime'); return Date.now() + epochOffset; } }),