kivy: fix fork detection gui
This commit is contained in:
@@ -113,12 +113,12 @@ class ElectrumWindow(App):
|
||||
chains = self.network.get_blockchains()
|
||||
def cb(name):
|
||||
for index, b in self.network.blockchains.items():
|
||||
if name == self.network.get_blockchain_name(b):
|
||||
if name == b.get_name():
|
||||
self.network.follow_chain(index)
|
||||
#self.block
|
||||
names = [self.network.blockchains[b].get_name() for b in chains]
|
||||
if len(names) >1:
|
||||
ChoiceDialog(_('Choose your chain'), names, '', cb).open()
|
||||
if len(names) > 1:
|
||||
cur_chain = self.network.blockchain().get_name()
|
||||
ChoiceDialog(_('Choose your chain'), names, cur_chain, cb).open()
|
||||
|
||||
use_rbf = BooleanProperty(False)
|
||||
def on_use_rbf(self, instance, x):
|
||||
|
||||
Reference in New Issue
Block a user