1
0

pass network to NetworkDialog and Blockchain

This commit is contained in:
thomasv
2013-09-10 18:27:32 +02:00
parent 2df129cfbf
commit 73901a001a
5 changed files with 20 additions and 13 deletions

View File

@@ -18,8 +18,6 @@ class InstallWizard(QDialog):
QDialog.__init__(self)
self.config = config
self.network = network
self.interface = network.interface
self.blockchain = network.blockchain
self.storage = storage
@@ -217,7 +215,7 @@ class InstallWizard(QDialog):
return
if b2.isChecked():
return NetworkDialog(self.interface, self.config, None).do_exec()
return NetworkDialog(self.network, self.config, None).do_exec()
elif b1.isChecked():
self.config.set_key('auto_cycle', True, True)