From f58e54138436b810201d4dc4b2faf9384f78d84c Mon Sep 17 00:00:00 2001 From: thomasv Date: Tue, 26 Feb 2013 15:30:37 +0100 Subject: [PATCH] convert satoshis to btc in listunspent --- lib/commands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/commands.py b/lib/commands.py index a2fc7ebe..b5b1a583 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