URI: 
       treturn True in network dialog, because None means offline - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit acbfa77af5ee52d43e0c01364ce2622e6e9e7ab3
   DIR parent 72358fbc20c36e4e268d247bded4a97826e4e966
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Fri, 23 Nov 2012 19:25:35 +0100
       
       return True in network dialog, because None means offline
       
       Diffstat:
         M electrum                            |       2 +-
         M lib/gui_android.py                  |       3 +--
       
       2 files changed, 2 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/electrum b/electrum
       t@@ -221,7 +221,7 @@ if __name__ == '__main__':
                        if not gui.seed_dialog(): exit()
                        wallet.init_mpk( wallet.seed )
        
       -            # generate the first addresses
       +            # generate the first addresses, in case we are offline
                    wallet.synchronize()
                    if a == 'create':
                        # display seed
   DIR diff --git a/lib/gui_android.py b/lib/gui_android.py
       t@@ -951,7 +951,7 @@ class ElectrumGui:
        
        
            def network_dialog(self):
       -        pass
       +        return True
        
                
            def show_seed(self):
       t@@ -975,7 +975,6 @@ class ElectrumGui:
                droid.vibrate()
        
                if wallet.is_found():
       -            wallet.update_tx_history()
                    wallet.fill_addressbook()
                    modal_dialog("recovery successful")
                else: