1
0

Add a help group for config variables. Change name of ssl variables

This commit is contained in:
ThomasV
2015-06-03 11:34:52 +02:00
parent 34360bddfb
commit ab60da89ac
2 changed files with 26 additions and 11 deletions

View File

@@ -1241,8 +1241,8 @@ class Abstract_Wallet(object):
message = self.labels.get(addr, '')
script = Transaction.pay_script('address', addr).decode('hex')
outputs = [(script, amount)]
key_path = config.get('ssl_key_path')
cert_path = config.get('ssl_cert_path')
key_path = config.get('ssl_privkey')
cert_path = config.get('ssl_chain')
return make_payment_request(outputs, message, time, time + expiration, key_path, cert_path)
def get_payment_request(self, key):