diff --git a/lib/commands.py b/lib/commands.py index a2fc7ebec..b5b1a5833 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -43,7 +43,9 @@ class Commands: print_json(h) def listunspent(self): - print_json(self.wallet.get_unspent_coins()) + l = self.wallet.get_unspent_coins() + for i in l: i["value"] = i["value"]*1e-8 + print_json(l) def createrawtransaction(self, inputs, outputs): # convert to own format