Corrected Bisq stats calculation.

fixes #280
This commit is contained in:
softsimon
2021-01-23 19:26:05 +07:00
parent ccec935193
commit 6c043f1598
2 changed files with 3 additions and 3 deletions

View File

@@ -233,8 +233,8 @@ class Bisq {
this.stats = {
addresses: Object.keys(this.addressIndex).length,
minted: minted,
burnt: burned,
minted: minted / 100,
burnt: burned / 100,
spent_txos: spent,
unspent_txos: unspent,
};