don't use floats because of rounding errors

This commit is contained in:
ThomasV 2015-12-15 11:33:04 +01:00
parent 23868d5769
commit 679efe2a66
2 changed files with 6 additions and 5 deletions

View File

@ -565,7 +565,7 @@ class Commands:
return map(self._format_request, out)
@command('w')
def addrequest(self, requested_amount, memo='', expiration=60*60, force=False):
def addrequest(self, amount, memo='', expiration=60*60, force=False):
"""Create a payment request."""
addr = self.wallet.get_unused_address(None)
if addr is None:
@ -573,7 +573,7 @@ class Commands:
addr = self.wallet.create_new_address(None, False)
else:
return False
amount = int(Decimal(requested_amount)*COIN)
amount = int(COIN*Decimal(amount))
expiration = int(expiration)
req = self.wallet.make_payment_request(addr, amount, memo, expiration)
self.wallet.add_payment_request(req, self.config)
@ -664,6 +664,7 @@ command_options = {
}
# don't use floats because of rounding errors
arg_types = {
'num':int,
'nbits':int,
@ -671,8 +672,8 @@ arg_types = {
'pubkeys': json.loads,
'inputs': json.loads,
'outputs': json.loads,
'tx_fee': lambda x: float(x) if x is not None else None,
'amount': lambda x: float(x) if x!='!' else '!',
'tx_fee': lambda x: str(Decimal(x)) if x is not None else None,
'amount': lambda x: str(Decimal(x)) if x!='!' else '!',
}
config_variables = {

View File

@ -147,7 +147,7 @@ def json_encode(obj):
def json_decode(x):
try:
return json.loads(x)
return json.loads(x, parse_float=decimal.Decimal)
except:
return x