minor testing fixes
This commit is contained in:
parent
42a5821e98
commit
b1ad293bae
2 changed files with 5 additions and 5 deletions
|
|
@ -201,9 +201,9 @@ class GenToolPycoin(GenTool):
|
|||
super().__init__(*args,**kwargs)
|
||||
try:
|
||||
from pycoin.networks.registry import network_for_netcode
|
||||
except Exception as e:
|
||||
except ImportError as e:
|
||||
raise ImportError(
|
||||
'Unable to import pycoin.networks.registry. Is pycoin installed on your system?') from e
|
||||
f'{e}\nUnable to import pycoin.networks.registry. Is pycoin installed on your system?') from e
|
||||
self.nfnc = network_for_netcode
|
||||
|
||||
def run(self,sec,vcoin):
|
||||
|
|
@ -233,9 +233,9 @@ class GenToolMonero_python(GenTool):
|
|||
super().__init__(*args,**kwargs)
|
||||
try:
|
||||
from monero.seed import Seed
|
||||
except Exception as e:
|
||||
except ImportError as e:
|
||||
raise ImportError(
|
||||
'Unable to import monero-python. Is monero-python installed on your system?') from e
|
||||
f'{e}\nUnable to import monero-python. Is monero-python installed on your system?') from e
|
||||
self.Seed = Seed
|
||||
|
||||
def run(self,sec,vcoin):
|
||||
|
|
|
|||
|
|
@ -180,7 +180,7 @@ if cfg.testing_status:
|
|||
'addrfile_chksum','keyaddrfile_chksum','passwdfile_chksum',
|
||||
'add_label','remove_label','remove_address','twview',
|
||||
'getbalance','listaddresses','listaddress',
|
||||
'daemon_version','decrypt_geth_keystore',
|
||||
'daemon_version','decrypt_keystore','decrypt_geth_keystore',
|
||||
'mn2hex_interactive','rand2file',
|
||||
'rescan_address','rescan_blockchain','resolve_address',
|
||||
'twexport','twimport','txhist'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue