fix greenaddress url

This commit is contained in:
ThomasV 2015-06-10 08:32:04 +02:00
parent 8bccf7b2db
commit 78e68507e1
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ class Plugin(BasePlugin):
sig = self.wallet.sign_message(addr, message, password)
# 2. send the request
response = requests.request("GET", ("/verify/?signature=%s&txhash=%s" % (urllib.quote(sig), tx.hash())),
response = requests.request("GET", ("https://greenaddress.it/verify/?signature=%s&txhash=%s" % (urllib.quote(sig), tx.hash())),
headers = {'User-Agent': 'Electrum'})
response = response.json()