Add plugins variable to console

This commit is contained in:
Neil Booth 2015-09-04 10:27:28 +09:00
parent 77a029082a
commit 392335487b
1 changed files with 4 additions and 1 deletions

View File

@ -1754,7 +1754,10 @@ class ElectrumWindow(QMainWindow):
console.history = self.config.get("console-history",[])
console.history_index = len(console.history)
console.updateNamespace({'wallet' : self.wallet, 'network' : self.network, 'gui':self})
console.updateNamespace({'wallet' : self.wallet,
'network' : self.network,
'plugins' : self.gui_object.plugins,
'gui': self})
console.updateNamespace({'util' : util, 'bitcoin':bitcoin})
c = commands.Commands(self.config, self.wallet, self.network, lambda: self.console.set_json(True))