Skip to content

Commit

Permalink
follow-up previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ecdsa committed Sep 22, 2019
1 parent a35421a commit d6c7dee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions electrum/wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -1372,9 +1372,9 @@ def get_request(self, key):
return
self.check_if_expired(req)
# add URL if we are running a payserver
if self.config.get('payserver_port'):
if self.config.get('run_payserver'):
host = self.config.get('payserver_host', 'localhost')
port = self.config.get('payserver_port')
port = self.config.get('payserver_port', 8002)
root = self.config.get('payserver_root', '/r')
use_ssl = bool(self.config.get('ssl_keyfile'))
protocol = 'https' if use_ssl else 'http'
Expand Down

0 comments on commit d6c7dee

Please sign in to comment.