mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 17:55:20 +00:00
fix #4651
This commit is contained in:
parent
7044f1145f
commit
bc6010303a
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ class Commands:
|
|||
def listunspent(self):
|
||||
"""List unspent outputs. Returns the list of unspent transaction
|
||||
outputs in your wallet."""
|
||||
l = copy.deepcopy(self.wallet.get_utxos(exclude_frozen=False))
|
||||
l = copy.deepcopy(self.wallet.get_utxos())
|
||||
for i in l:
|
||||
v = i["value"]
|
||||
i["value"] = str(Decimal(v)/COIN) if v is not None else None
|
||||
|
|
Loading…
Add table
Reference in a new issue