commit 78e68507e174fc80bbf16dd149e795d4e69e00e9
parent 8bccf7b2db32f0fcc28eaaa2e03cfe6279e7978d
Author: ThomasV <thomasv@gitorious>
Date: Wed, 10 Jun 2015 08:32:04 +0200
fix greenaddress url
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/greenaddress_instant.py b/plugins/greenaddress_instant.py
@@ -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()