Adding settings page.

This commit is contained in:
tecnovert
2019-08-06 00:04:40 +02:00
parent 4405a130f5
commit 3e542e6bd0
7 changed files with 138 additions and 11 deletions

View File

@@ -383,6 +383,7 @@ def main():
'override_feerate': 0.002,
'conf_target': 2,
'core_version_group': 18,
'chain_lookups': 'local',
},
'litecoin': {
'connection_type': 'rpc' if 'litecoin' in with_coins else 'none',
@@ -394,6 +395,7 @@ def main():
'blocks_confirmed': 2,
'conf_target': 2,
'core_version_group': 17,
'chain_lookups': 'local',
},
'bitcoin': {
'connection_type': 'rpc' if 'bitcoin' in with_coins else 'none',
@@ -405,6 +407,7 @@ def main():
'blocks_confirmed': 1,
'conf_target': 2,
'core_version_group': 18,
'chain_lookups': 'local',
},
'namecoin': {
'connection_type': 'rpc' if 'namecoin' in with_coins else 'none',
@@ -417,6 +420,7 @@ def main():
'blocks_confirmed': 1,
'conf_target': 2,
'core_version_group': 18,
'chain_lookups': 'local',
}
}