From 8286b566c896e42ab94e17c98f8357f2fc2c910b Mon Sep 17 00:00:00 2001 From: Jim Ramsay Date: Wed, 13 Sep 2017 14:13:12 -0400 Subject: [PATCH] Fix typo in handling of onionbindip handling --- src/network/connectionpool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/connectionpool.py b/src/network/connectionpool.py index be7b8ceb..cbb327d1 100644 --- a/src/network/connectionpool.py +++ b/src/network/connectionpool.py @@ -106,7 +106,7 @@ class BMConnectionPool(object): def getListeningIP(self): if BMConfigParser().safeGet("bitmessagesettings", "onionhostname").endswith(".onion"): - host = BMConfigParser().safeGet("bitmessagesettigns", "onionbindip") + host = BMConfigParser().safeGet("bitmessagesettings", "onionbindip") else: host = '127.0.0.1' if BMConfigParser().safeGetBoolean("bitmessagesettings", "sockslisten") or \