-
Difficulty: 1
-
Generated: 0 addresses
+
Difficulty: 1
+
Generated: 0 addresses
50% probability: 0 addresses
Speed: 0 addr/s
Status: Waiting
diff --git a/js/index.js b/js/index.js
index 6e4d6b8..a414c96 100644
--- a/js/index.js
+++ b/js/index.js
@@ -49,7 +49,7 @@ new Vue({
return this.inputError ? 'N/A' : computeDifficulty(this.input.prefix, this.input.checksum);
},
probability50: function () {
- return this.inputError ? 'N/A' : Math.floor(Math.log(0.5) / Math.log(1 - (1 / this.difficulty))) + ' addresses';
+ return this.inputError ? 'N/A' : this.formatNum(Math.floor(Math.log(0.5) / Math.log(1 - (1 / this.difficulty)))) + ' addresses';
},
probability: function () {
return Math.round(10000 * computeProbability(this.difficulty, this.count)) / 100;
@@ -171,6 +171,9 @@ new Vue({
this.cores = cores;
this.threads = this.cores;
}
+ },
+ formatNum: function (num) {
+ return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ' ');
}
},