Print unconfirmed amount as well with balance flag (#62)

This commit is contained in:
Sercan Tekin 2024-02-22 01:08:09 -05:00 committed by GitHub
parent 61b39a12eb
commit 012156e072
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -42,7 +42,7 @@ docker compose up -d
```
A `.config/` subfolder will be created under the current folder, this is mapped inside the container.
Make sure you backup `config.ym` and `keys.yml`.
Make sure you backup `config.yml` and `keys.yml`.
## Intereact with a running cotainer

View File

@ -101,7 +101,8 @@ func main() {
panic(err)
}
fmt.Println("Confirmed balance:", balance.Owned, "QUIL")
fmt.Println("Owned balance:", balance.Owned, "QUIL")
fmt.Println("Unconfirmed balance:", balance.UnconfirmedOwned, "QUIL")
return
}