URI: 
       tfix #4651 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit bc6010303a0010c9c027b99d8c65c68481d2c585
   DIR parent 7044f1145f3a20f3a72d8ec7e93435ebc541f226
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Wed, 22 Aug 2018 17:05:48 +0200
       
       fix #4651
       
       Diffstat:
         M electrum/commands.py                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/commands.py b/electrum/commands.py
       t@@ -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