Browse Source

use Decimal in listunspent

283
ThomasV 12 years ago
parent
commit
7bf1a6248e
  1. 2
      lib/commands.py

2
lib/commands.py

@ -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):

Loading…
Cancel
Save