mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-15 12:50:57 +02:00
Remove twisted logging on testnet
This commit is contained in:
parent
be8bfc4da4
commit
44c9dcde65
2 changed files with 2 additions and 2 deletions
|
|
@ -311,7 +311,7 @@ def main():
|
|||
clientfactory = JMClientProtocolFactory(taker)
|
||||
nodaemon = jm_single().config.getint("DAEMON", "no_daemon")
|
||||
daemon = True if nodaemon == 1 else False
|
||||
if jm_single().config.get("BLOCKCHAIN", "network") in ["regtest", "testnet"]:
|
||||
if jm_single().config.get("BLOCKCHAIN", "network") == "regtest":
|
||||
startLogging(sys.stdout)
|
||||
start_reactor(jm_single().config.get("DAEMON", "daemon_host"),
|
||||
jm_single().config.getint("DAEMON", "daemon_port"),
|
||||
|
|
|
|||
|
|
@ -183,7 +183,7 @@ def main():
|
|||
clientfactory = JMClientProtocolFactory(taker)
|
||||
nodaemon = jm_single().config.getint("DAEMON", "no_daemon")
|
||||
daemon = True if nodaemon == 1 else False
|
||||
if jm_single().config.get("BLOCKCHAIN", "network") in ["regtest", "testnet"]:
|
||||
if jm_single().config.get("BLOCKCHAIN", "network") == "regtest":
|
||||
startLogging(sys.stdout)
|
||||
start_reactor(jm_single().config.get("DAEMON", "daemon_host"),
|
||||
jm_single().config.getint("DAEMON", "daemon_port"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue