This commit is contained in:
SomberNight 2018-08-22 17:05:48 +02:00
parent 7044f1145f
commit bc6010303a
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -187,7 +187,7 @@ class Commands:
def listunspent(self): def listunspent(self):
"""List unspent outputs. Returns the list of unspent transaction """List unspent outputs. Returns the list of unspent transaction
outputs in your wallet.""" 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: for i in l:
v = i["value"] v = i["value"]
i["value"] = str(Decimal(v)/COIN) if v is not None else None i["value"] = str(Decimal(v)/COIN) if v is not None else None