use Decimal in listunspent

This commit is contained in:
ThomasV 2013-03-01 06:43:08 +01:00
parent 3eb746db5c
commit 7bf1a6248e
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ class Commands:
def listunspent(self):
import copy
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
def createrawtransaction(self, inputs, outputs):