move up chain

This commit is contained in:
Stefan Midjich 2017-09-29 19:30:27 +02:00
parent 9032edb0bd
commit 936cc09a69
1 changed files with 2 additions and 2 deletions

View File

@ -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)