set self.wallet to None in plugin constructor

This commit is contained in:
ThomasV
2015-02-17 11:39:06 +01:00
parent 0934976f3a
commit f302c90649
2 changed files with 3 additions and 1 deletions

View File

@@ -71,6 +71,7 @@ class BasePlugin:
def __init__(self, config, name):
self.name = name
self.config = config
self.wallet = None
# add self to hooks
for k in dir(self):
if k in hook_names: