fix cmdline addrequest

This commit is contained in:
ThomasV 2015-07-11 21:03:02 +02:00
parent dff8f6b338
commit fbc23a61a3
1 changed files with 2 additions and 1 deletions

View File

@ -571,7 +571,8 @@ class Commands:
else:
return False
amount = int(Decimal(requested_amount)*COIN)
req = self.wallet.add_payment_request(addr, amount, memo, expiration, self.config)
req = self.wallet.make_payment_request(addr, amount, memo, expiration)
self.wallet.add_payment_request(req, self.config)
return self._format_request(req)
@command('w')