From cdb57c73e8558fb1754bdc24b0249aa98c34b409 Mon Sep 17 00:00:00 2001 From: Johann Bauer Date: Tue, 14 Feb 2017 17:14:53 +0100 Subject: [PATCH] Use new LabelSync server for the plugin Also removes import of aes, seems like that was forgotten in e1515743cd. It isn't used anyway --- plugins/labels/labels.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/labels/labels.py b/plugins/labels/labels.py index 8f968ad2..eaa089e4 100644 --- a/plugins/labels/labels.py +++ b/plugins/labels/labels.py @@ -5,7 +5,6 @@ import json import sys import traceback -import aes import base64 import electrum @@ -19,7 +18,7 @@ class LabelsPlugin(BasePlugin): def __init__(self, parent, config, name): BasePlugin.__init__(self, parent, config, name) - self.target_host = 'sync.bytesized-hosting.com:9090' + self.target_host = 'labels.bauerj.eu' self.wallets = {} def encode(self, wallet, msg):