This commit is contained in:
commit
16ac6c7d2b
@ -17,12 +17,19 @@ If you have HSD runnning on a separate computer also add the IP here
|
|||||||
|
|
||||||
Make sure HSD is running then run the following commands:
|
Make sure HSD is running then run the following commands:
|
||||||
|
|
||||||
|
On Linux:
|
||||||
```bash
|
```bash
|
||||||
python3 server.py
|
python3 server.py
|
||||||
# Or for more verbose output
|
# Or for more verbose output
|
||||||
python3 main.py
|
python3 main.py
|
||||||
```
|
```
|
||||||
|
|
||||||
|
On Windows:
|
||||||
|
```bash
|
||||||
|
python main.py
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
Then access the wallet at http://localhost:5000
|
Then access the wallet at http://localhost:5000
|
||||||
|
|
||||||
|
|
||||||
|
@ -134,6 +134,7 @@ def getBalance(account: str):
|
|||||||
domains = getDomains(account)
|
domains = getDomains(account)
|
||||||
domainValue = 0
|
domainValue = 0
|
||||||
for domain in domains:
|
for domain in domains:
|
||||||
|
if domain['state'] == "CLOSED":
|
||||||
domainValue += domain['value']
|
domainValue += domain['value']
|
||||||
total = total - (domainValue/1000000)
|
total = total - (domainValue/1000000)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user