Expose verified (and thus spendable) balance

This commit is contained in:
Jack Grigg
2019-06-20 22:58:58 +02:00
parent 665ff5ad26
commit 6b35ef24c2
4 changed files with 37 additions and 4 deletions

View File

@@ -58,7 +58,7 @@ export class ZcashClient {
}
updateUI () {
this.uiHandlers.updateBalance(this.client.balance() / COIN)
this.uiHandlers.updateBalance(this.client.balance() / COIN, this.client.verified_balance() / COIN)
}
sync () {