1
0

rename ssl config variables

This commit is contained in:
ThomasV
2015-04-30 17:33:29 +02:00
parent 1b6abf6e02
commit c35cdf1fd8
2 changed files with 7 additions and 7 deletions

View File

@@ -737,9 +737,9 @@ class ElectrumWindow(QMainWindow):
message = self.wallet.labels.get(addr, '')
script = Transaction.pay_script('address', addr).decode('hex')
outputs = [(script, amount)]
cert_path = self.config.get('cert_path')
chain_path = self.config.get('chain_path')
return make_payment_request(outputs, message, time, time + expiration, cert_path, chain_path)
key_path = self.config.get('ssl_key_path')
cert_path = self.config.get('ssl_cert_path')
return make_payment_request(outputs, message, time, time + expiration, key_path, cert_path)
def export_payment_request(self, addr):
pr = self.make_payment_request(addr)