replace BaseException with Exception

This commit is contained in:
Bryan Stitt 2013-11-09 20:21:02 -08:00
parent ba9782eec6
commit f0eb0eccde
15 changed files with 42 additions and 42 deletions

View File

@ -103,7 +103,7 @@ def run_command(cmd, password = None, args = []):
cmd_runner.password = password cmd_runner.password = password
try: try:
result = func(*args[1:]) result = func(*args[1:])
except BaseException, e: except Exception as e:
import traceback import traceback
traceback.print_exc(file=sys.stdout) traceback.print_exc(file=sys.stdout)
sys.exit(1) sys.exit(1)

View File

@ -458,7 +458,7 @@ def pay_to(recipient, amount, fee, label):
try: try:
tx = wallet.mktx( [(recipient, amount)], password, fee) tx = wallet.mktx( [(recipient, amount)], password, fee)
except BaseException, e: except Exception as e:
modal_dialog('error', e.message) modal_dialog('error', e.message)
droid.dialogDismiss() droid.dialogDismiss()
return return

View File

@ -807,7 +807,7 @@ class ElectrumWindow:
try: try:
tx = self.wallet.mktx( [(to_address, amount)], password, fee ) tx = self.wallet.mktx( [(to_address, amount)], password, fee )
except BaseException, e: except Exception as e:
self.show_message(str(e)) self.show_message(str(e))
return return

View File

@ -750,7 +750,7 @@ class MiniActuator:
try: try:
tx = self.g.wallet.mktx([(dest_address, amount)], password, fee) tx = self.g.wallet.mktx([(dest_address, amount)], password, fee)
except BaseException as error: except Exception as error:
QMessageBox.warning(parent_window, _('Error'), str(error), _('OK')) QMessageBox.warning(parent_window, _('Error'), str(error), _('OK'))
return False return False
@ -778,7 +778,7 @@ class MiniActuator:
with open(fileName,'w') as f: with open(fileName,'w') as f:
f.write(json.dumps(tx.as_dict(),indent=4) + '\n') f.write(json.dumps(tx.as_dict(),indent=4) + '\n')
QMessageBox.information(QWidget(), _('Unsigned transaction created'), _("Unsigned transaction was saved to file:") + " " +fileName, _('OK')) QMessageBox.information(QWidget(), _('Unsigned transaction created'), _("Unsigned transaction was saved to file:") + " " +fileName, _('OK'))
except BaseException as e: except Exception as e:
QMessageBox.warning(QWidget(), _('Error'), _('Could not write transaction to file: %s' % e), _('OK')) QMessageBox.warning(QWidget(), _('Error'), _('Could not write transaction to file: %s' % e), _('OK'))
return True return True

View File

@ -889,7 +889,7 @@ class ElectrumWindow(QMainWindow):
try: try:
tx = self.wallet.mktx_from_account( [(to_address, amount)], password, fee, self.current_account) tx = self.wallet.mktx_from_account( [(to_address, amount)], password, fee, self.current_account)
except BaseException, e: except Exception as e:
traceback.print_exc(file=sys.stdout) traceback.print_exc(file=sys.stdout)
self.show_message(str(e)) self.show_message(str(e))
return return
@ -1635,7 +1635,7 @@ class ElectrumWindow(QMainWindow):
if not address: return if not address: return
try: try:
pk_list = self.wallet.get_private_key(address, password) pk_list = self.wallet.get_private_key(address, password)
except BaseException, e: except Exception as e:
self.show_message(str(e)) self.show_message(str(e))
return return
QMessageBox.information(self, _('Private key'), _('Address')+ ': ' + address + '\n\n' + _('Private key') + ': ' + '\n'.join(pk_list), _('OK')) QMessageBox.information(self, _('Private key'), _('Address')+ ': ' + address + '\n\n' + _('Private key') + ': ' + '\n'.join(pk_list), _('OK'))
@ -1648,7 +1648,7 @@ class ElectrumWindow(QMainWindow):
try: try:
sig = self.wallet.sign_message(str(address.text()), message, password) sig = self.wallet.sign_message(str(address.text()), message, password)
signature.setText(sig) signature.setText(sig)
except BaseException, e: except Exception as e:
self.show_message(str(e)) self.show_message(str(e))
def sign_message(self, address): def sign_message(self, address):
@ -1840,7 +1840,7 @@ class ElectrumWindow(QMainWindow):
try: try:
tx = self.wallet.make_unsigned_transaction(outputs, None, None) tx = self.wallet.make_unsigned_transaction(outputs, None, None)
except BaseException, e: except Exception as e:
self.show_message(str(e)) self.show_message(str(e))
return return
@ -1893,7 +1893,7 @@ class ElectrumWindow(QMainWindow):
export_error_label = _("Electrum was unable to produce a private key-export.") export_error_label = _("Electrum was unable to produce a private key-export.")
QMessageBox.critical(None, _("Unable to create csv"), export_error_label + "\n" + str(reason)) QMessageBox.critical(None, _("Unable to create csv"), export_error_label + "\n" + str(reason))
except BaseException, e: except Exception as e:
self.show_message(str(e)) self.show_message(str(e))
return return
@ -1946,7 +1946,7 @@ class ElectrumWindow(QMainWindow):
for key in text: for key in text:
try: try:
addr = self.wallet.import_key(key, password) addr = self.wallet.import_key(key, password)
except BaseException as e: except Exception as e:
badkeys.append(key) badkeys.append(key)
continue continue
if not addr: if not addr:

View File

@ -198,7 +198,7 @@ class ElectrumGui:
try: try:
tx = self.wallet.mktx( [(self.str_recipient, amount)], password, fee) tx = self.wallet.mktx( [(self.str_recipient, amount)], password, fee)
except BaseException, e: except Exception as e:
print(str(e)) print(str(e))
return return

View File

@ -309,7 +309,7 @@ class ElectrumGui:
try: try:
tx = self.wallet.mktx( [(self.str_recipient, amount)], password, fee) tx = self.wallet.mktx( [(self.str_recipient, amount)], password, fee)
except BaseException, e: except Exception as e:
self.show_message(str(e)) self.show_message(str(e))
return return

View File

@ -109,7 +109,7 @@ class OldAccount(Account):
master_public_key = master_private_key.get_verifying_key().to_string() master_public_key = master_private_key.get_verifying_key().to_string()
if master_public_key != self.mpk: if master_public_key != self.mpk:
print_error('invalid password (mpk)') print_error('invalid password (mpk)')
raise BaseException('Invalid password') raise Exception('Invalid password')
return True return True
def redeem_script(self, sequence): def redeem_script(self, sequence):

View File

@ -294,7 +294,7 @@ def verify_message(address, signature, message):
try: try:
EC_KEY.verify_message(address, signature, message) EC_KEY.verify_message(address, signature, message)
return True return True
except BaseException as e: except Exception as e:
print_error("Verification error: {0}".format(e)) print_error("Verification error: {0}".format(e))
return False return False
@ -319,7 +319,7 @@ class EC_KEY(object):
except: except:
continue continue
else: else:
raise BaseException("error: cannot sign message") raise Exception("error: cannot sign message")
@classmethod @classmethod
def verify_message(self, address, signature, message): def verify_message(self, address, signature, message):
@ -331,11 +331,11 @@ class EC_KEY(object):
order = G.order() order = G.order()
# extract r,s from signature # extract r,s from signature
sig = base64.b64decode(signature) sig = base64.b64decode(signature)
if len(sig) != 65: raise BaseException("Wrong encoding") if len(sig) != 65: raise Exception("Wrong encoding")
r,s = util.sigdecode_string(sig[1:], order) r,s = util.sigdecode_string(sig[1:], order)
nV = ord(sig[0]) nV = ord(sig[0])
if nV < 27 or nV >= 35: if nV < 27 or nV >= 35:
raise BaseException("Bad encoding") raise Exception("Bad encoding")
if nV >= 31: if nV >= 31:
compressed = True compressed = True
nV -= 4 nV -= 4
@ -364,7 +364,7 @@ class EC_KEY(object):
# check that we get the original signing address # check that we get the original signing address
addr = public_key_to_bc_address( encode_point(public_key, compressed) ) addr = public_key_to_bc_address( encode_point(public_key, compressed) )
if address != addr: if address != addr:
raise BaseException("Bad signature") raise Exception("Bad signature")
###################################### BIP32 ############################## ###################################### BIP32 ##############################

View File

@ -228,7 +228,7 @@ class Commands:
try: try:
addr = self.wallet.import_key(sec,self.password) addr = self.wallet.import_key(sec,self.password)
out = "Keypair imported: ", addr out = "Keypair imported: ", addr
except BaseException as e: except Exception as e:
out = "Error: Keypair import failed: " + str(e) out = "Error: Keypair import failed: " + str(e)
return out return out
@ -245,19 +245,19 @@ class Commands:
for to_address, amount in outputs: for to_address, amount in outputs:
if not is_valid(to_address): if not is_valid(to_address):
raise BaseException("Invalid Bitcoin address", to_address) raise Exception("Invalid Bitcoin address", to_address)
if change_addr: if change_addr:
if not is_valid(change_addr): if not is_valid(change_addr):
raise BaseException("Invalid Bitcoin address", change_addr) raise Exception("Invalid Bitcoin address", change_addr)
if domain is not None: if domain is not None:
for addr in domain: for addr in domain:
if not is_valid(addr): if not is_valid(addr):
raise BaseException("invalid Bitcoin address", addr) raise Exception("invalid Bitcoin address", addr)
if not self.wallet.is_mine(addr): if not self.wallet.is_mine(addr):
raise BaseException("address not in wallet", addr) raise Exception("address not in wallet", addr)
for k, v in self.wallet.labels.items(): for k, v in self.wallet.labels.items():
if change_addr and v == change_addr: if change_addr and v == change_addr:

View File

@ -117,7 +117,7 @@ class Interface(threading.Thread):
return return
if protocol not in 'ghst': if protocol not in 'ghst':
raise BaseException('Unknown protocol: %s'%protocol) raise Exception('Unknown protocol: %s'%protocol)
self.host = host self.host = host
self.port = port self.port = port

View File

@ -49,7 +49,7 @@ def user_dir():
elif 'ANDROID_DATA' in os.environ: elif 'ANDROID_DATA' in os.environ:
return "/sdcard/electrum/" return "/sdcard/electrum/"
else: else:
#raise BaseException("No home directory found in environment variables.") #raise Exception("No home directory found in environment variables.")
return return
def appdata_dir(): def appdata_dir():

View File

@ -56,7 +56,7 @@ def pw_decode(s, password):
try: try:
d = DecodeAES(secret, s) d = DecodeAES(secret, s)
except: except:
raise BaseException('Invalid password') raise Exception('Invalid password')
return d return d
else: else:
return s return s
@ -257,10 +257,10 @@ class Wallet:
try: try:
address = address_from_private_key(sec) address = address_from_private_key(sec)
except: except:
raise BaseException('Invalid private key') raise Exception('Invalid private key')
if self.is_mine(address): if self.is_mine(address):
raise BaseException('Address already in wallet') raise Exception('Address already in wallet')
# store the originally requested keypair into the imported keys table # store the originally requested keypair into the imported keys table
self.imported_keys[address] = pw_encode(sec, password ) self.imported_keys[address] = pw_encode(sec, password )
@ -296,7 +296,7 @@ class Wallet:
import mnemonic import mnemonic
if self.seed: if self.seed:
raise BaseException("a seed exists") raise Exception("a seed exists")
if not seed: if not seed:
self.seed = random_seed(128) self.seed = random_seed(128)
@ -438,7 +438,7 @@ class Wallet:
elif account_type == '2of3': elif account_type == '2of3':
return "m/3'/%d & m/4'/%d & m/5'/%d"%(i,i,i) return "m/3'/%d & m/4'/%d & m/5'/%d"%(i,i,i)
else: else:
raise BaseException('unknown account type') raise Exception('unknown account type')
def num_accounts(self, account_type): def num_accounts(self, account_type):
@ -609,7 +609,7 @@ class Wallet:
K, Kc = get_pubkeys_from_secret(master_k.decode('hex')) K, Kc = get_pubkeys_from_secret(master_k.decode('hex'))
assert K.encode('hex') == master_K assert K.encode('hex') == master_K
except: except:
raise BaseException("Invalid password") raise Exception("Invalid password")
return master_k return master_k
@ -628,7 +628,7 @@ class Wallet:
if v == address: if v == address:
return k, (0,0) return k, (0,0)
raise BaseException("Address not found", address) raise Exception("Address not found", address)
def get_roots(self, account): def get_roots(self, account):
@ -1110,7 +1110,7 @@ class Wallet:
if h == ['*']: continue if h == ['*']: continue
for tx_hash, tx_height in h: for tx_hash, tx_height in h:
tx = self.transactions.get(tx_hash) tx = self.transactions.get(tx_hash)
if tx is None: raise BaseException("Wallet not synchronized") if tx is None: raise Exception("Wallet not synchronized")
is_coinbase = tx.inputs[0].get('prevout_hash') == '0'*64 is_coinbase = tx.inputs[0].get('prevout_hash') == '0'*64
for output in tx.d.get('outputs'): for output in tx.d.get('outputs'):
if output.get('address') != addr: continue if output.get('address') != addr: continue
@ -1245,7 +1245,7 @@ class Wallet:
def receive_history_callback(self, addr, hist): def receive_history_callback(self, addr, hist):
if not self.check_new_history(addr, hist): if not self.check_new_history(addr, hist):
raise BaseException("error: received history for %s is not consistent with known transactions"%addr) raise Exception("error: received history for %s is not consistent with known transactions"%addr)
with self.lock: with self.lock:
self.history[addr] = hist self.history[addr] = hist
@ -1754,12 +1754,12 @@ class WalletSynchronizer(threading.Thread):
hist.append( (tx_hash, item['height']) ) hist.append( (tx_hash, item['height']) )
if len(hist) != len(result): if len(hist) != len(result):
raise BaseException("error: server sent history with non-unique txid", result) raise Exception("error: server sent history with non-unique txid", result)
# check that the status corresponds to what was announced # check that the status corresponds to what was announced
rs = requested_histories.pop(addr) rs = requested_histories.pop(addr)
if self.wallet.get_status(hist) != rs: if self.wallet.get_status(hist) != rs:
raise BaseException("error: status mismatch: %s"%addr) raise Exception("error: status mismatch: %s"%addr)
# store received history # store received history
self.wallet.receive_history_callback(addr, hist) self.wallet.receive_history_callback(addr, hist)

View File

@ -52,7 +52,7 @@ class Plugin(BasePlugin):
def get_alias(self, alias, interactive = False, show_message=None, question = None): def get_alias(self, alias, interactive = False, show_message=None, question = None):
try: try:
target, signing_address, auth_name = read_alias(self, alias) target, signing_address, auth_name = read_alias(self, alias)
except BaseException, e: except Exception as e:
# raise exception if verify fails (verify the chain) # raise exception if verify fails (verify the chain)
if interactive: if interactive:
show_message("Alias error: " + str(e)) show_message("Alias error: " + str(e))

View File

@ -110,7 +110,7 @@ class Plugin(BasePlugin):
try: try:
tx = self.gui.main_window.wallet.mktx( [(to_address, amount)], None, fee) tx = self.gui.main_window.wallet.mktx( [(to_address, amount)], None, fee)
except BaseException, e: except Exception as e:
self.gui.main_window.show_message(str(e)) self.gui.main_window.show_message(str(e))
return return
@ -126,13 +126,13 @@ class Plugin(BasePlugin):
input_info = [] input_info = []
except BaseException, e: except Exception as e:
self.gui.main_window.show_message(str(e)) self.gui.main_window.show_message(str(e))
try: try:
json_text = json.dumps(tx.as_dict()).replace(' ', '') json_text = json.dumps(tx.as_dict()).replace(' ', '')
self.show_tx_qrcode(json_text, 'Unsigned Transaction') self.show_tx_qrcode(json_text, 'Unsigned Transaction')
except BaseException, e: except Exception as e:
self.gui.main_window.show_message(str(e)) self.gui.main_window.show_message(str(e))
def show_tx_qrcode(self, data, title): def show_tx_qrcode(self, data, title):
@ -235,7 +235,7 @@ class Plugin(BasePlugin):
self.gui.main_window.wallet.signrawtransaction(tx, input_info, [], password) self.gui.main_window.wallet.signrawtransaction(tx, input_info, [], password)
txtext = json.dumps(tx.as_dict()).replace(' ', '') txtext = json.dumps(tx.as_dict()).replace(' ', '')
self.show_tx_qrcode(txtext, 'Signed Transaction') self.show_tx_qrcode(txtext, 'Signed Transaction')
except BaseException, e: except Exception as e:
self.gui.main_window.show_message(str(e)) self.gui.main_window.show_message(str(e))