Workaround missing litecoin pid file on windows.

This commit is contained in:
tecnovert
2019-07-31 18:53:44 +02:00
parent 31ed5e7142
commit 31766508b4
3 changed files with 9 additions and 2 deletions

View File

@@ -381,6 +381,7 @@ def main():
'blocks_confirmed': 2,
'override_feerate': 0.002,
'conf_target': 2,
'core_version_group': 18,
},
'litecoin': {
'connection_type': 'rpc' if 'litecoin' in with_coins else 'none',
@@ -391,6 +392,7 @@ def main():
'use_segwit': True,
'blocks_confirmed': 2,
'conf_target': 2,
'core_version_group': 17,
},
'bitcoin': {
'connection_type': 'rpc' if 'bitcoin' in with_coins else 'none',
@@ -401,6 +403,7 @@ def main():
'use_segwit': True,
'blocks_confirmed': 1,
'conf_target': 2,
'core_version_group': 18,
},
'namecoin': {
'connection_type': 'rpc' if 'namecoin' in with_coins else 'none',
@@ -412,6 +415,7 @@ def main():
'use_csv': False,
'blocks_confirmed': 1,
'conf_target': 2,
'core_version_group': 18,
}
}

View File

@@ -20,7 +20,7 @@ import subprocess
import logging
from basicswap import __version__
from basicswap.basicswap import BasicSwap, Coins
from basicswap.basicswap import BasicSwap
from basicswap.http_server import HttpThread