use Decimal in listunspent

This commit is contained in:
ThomasV 2013-03-01 06:43:08 +01:00
parent 3eb746db5c
commit 7bf1a6248e

View file

@ -123,7 +123,7 @@ class Commands:
def listunspent(self): def listunspent(self):
import copy import copy
l = copy.deepcopy(self.wallet.get_unspent_coins()) l = copy.deepcopy(self.wallet.get_unspent_coins())
for i in l: i["value"] = i["value"]*1e-8 for i in l: i["value"] = str(Decimal(i["value"])/100000000)
return l return l
def createrawtransaction(self, inputs, outputs): def createrawtransaction(self, inputs, outputs):