From 936cc09a692ea3565ada0ef16d0a52f041be8a59 Mon Sep 17 00:00:00 2001 From: Stefan Midjich Date: Fri, 29 Sep 2017 19:30:27 +0200 Subject: [PATCH] move up chain --- tools/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/client.py b/tools/client.py index 5bfc9e8..eb65be4 100644 --- a/tools/client.py +++ b/tools/client.py @@ -18,8 +18,8 @@ class Client(object): self.storage = kw.pop('storage') self._chain = kw.pop('chain') - self._ip_address = kw.pop('ip_address', None) - self.protocol = kw.pop('protocol', None) + self.ip_address = kw.pop('ip_address', '127.0.0.1') + self.protocol = kw.pop('protocol', 'tcp') # First try to get an existing client by ID self.client_id = kw.pop('client_id', None)