convert satoshis to btc in listunspent
authorthomasv <thomasv@gitorious>
Tue, 26 Feb 2013 14:30:37 +0000 (15:30 +0100)
committerthomasv <thomasv@gitorious>
Tue, 26 Feb 2013 14:30:37 +0000 (15:30 +0100)
lib/commands.py

index a2fc7eb..b5b1a58 100644 (file)
@@ -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