We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fc53d95 + 50c3a45 commit bd4fb43Copy full SHA for bd4fb43
2 files changed
CHANGELOG.md
@@ -3,10 +3,7 @@ title: NODEYEZ Change Log
3
---
4
# CHANGELOG
5
6
-## main | baseclass
7
-
8
-TODO
9
-- update image samples
+## main
10
11
**New Panels and Ehancements**
12
scripts/halving.py
@@ -227,7 +227,7 @@ def run(self):
227
blocksToGo = halvingend + 1 - self.blockheight
228
currentTime = int(time.time())
229
secondsPassed = currentTime - self.halvingBeganTime
230
- avgBlockTime = secondsPassed / self.halvingBlocksMined
+ avgBlockTime = 600 if self.halvingBeganTime == 0 else secondsPassed / self.halvingBlocksMined
231
secondsRemain = avgBlockTime * blocksToGo
232
if blocksToGo % 4 == 0:
233
# block height
0 commit comments