1
0

Update kivy GUI in order to merge with master

This commit is contained in:
ThomasV
2015-09-03 15:09:45 +02:00
parent eca24ec396
commit 04b9d8fffa
5 changed files with 12 additions and 9 deletions

View File

@@ -251,7 +251,7 @@ class ElectrumWindow(App):
self.on_size(win, win.size)
config = self.electrum_config
storage = WalletStorage(config)
storage = WalletStorage(config.get_wallet_path())
Logger.info('Electrum: Check for existing wallet')
@@ -599,7 +599,7 @@ class ElectrumWindow(App):
def parse_histories(self, items):
for item in items:
tx_hash, conf, is_mine, value, fee, balance, timestamp = item
tx_hash, conf, value, timestamp, balance = item
time_str = _("unknown")
if conf > 0:
try:
@@ -644,7 +644,7 @@ class ElectrumWindow(App):
except AttributeError:
return
histories = self.parse_histories(reversed(
self.wallet.get_tx_history(self.current_account)))
self.wallet.get_history(self.current_account)))
# repopulate History Card
last_widget = history_card.ids.content.children[-1]
@@ -892,7 +892,8 @@ class ElectrumWindow(App):
'''
if not self.network or not self.network.is_connected():
return
# temporarily disabled for merge
return
iface = self.network
ptfn = iface.pending_transactions_for_notifications
if len(ptfn) > 0: