Get Decred account key from seed.

This commit is contained in:
tecnovert
2024-04-22 20:59:22 +02:00
parent 89ca350ff2
commit f1822e1443
14 changed files with 330 additions and 32 deletions

View File

@@ -91,6 +91,8 @@ known_coins = {
disabled_coins = [
'navcoin',
'namecoin', # Needs update
'decred', # In-progress
]
expected_key_ids = {

View File

@@ -81,6 +81,7 @@ def startDaemon(node_dir, bin_dir, daemon_bin, opts=[], extra_config={}):
args.append('-datadir=' + datadir_path)
args += opts
logging.info('Starting node ' + daemon_bin + ' ' + (('-datadir=' + node_dir) if add_datadir else ''))
logging.info('[rm] {}'.format(' '.join(args)))
opened_files = []
if extra_config.get('stdout_to_file', False):