fix: network object in console

This commit is contained in:
ThomasV 2013-10-04 16:44:36 +02:00
parent 0b2c09d20b
commit 9a06da1d6b
1 changed files with 1 additions and 1 deletions

View File

@ -1287,7 +1287,7 @@ class ElectrumWindow(QMainWindow):
def mkfunc(f, method):
return lambda *args: apply( f, (method, args, self.password_dialog ))
for m in dir(c):
if m[0]=='_' or m=='wallet' or m == 'interface': continue
if m[0]=='_' or m in ['network','wallet']: continue
methods[m] = mkfunc(c._run, m)
console.updateNamespace(methods)