From f90e19c7677be8e9cf15433a0a6566970a008f62 Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 25 Sep 2021 01:19:33 +0900 Subject: [PATCH] Update production backend configuration files * Set syslog priority to DEBUG since we're not Raspberry Pi * Add 2nd core RPC configuration stubs for mainnet / liquid --- production/mempool-config.bisq.json | 3 +++ production/mempool-config.liquid.json | 8 ++++++++ production/mempool-config.mainnet.json | 12 +++++++++++- production/mempool-config.signet.json | 3 +++ production/mempool-config.testnet.json | 3 +++ 5 files changed, 28 insertions(+), 1 deletion(-) diff --git a/production/mempool-config.bisq.json b/production/mempool-config.bisq.json index e58ef172c..f4b2e1480 100644 --- a/production/mempool-config.bisq.json +++ b/production/mempool-config.bisq.json @@ -8,6 +8,9 @@ "API_URL_PREFIX": "/api/v1/", "POLL_RATE_MS": 2000 }, + "SYSLOG" : { + "MIN_PRIORITY": "debug" + }, "CORE_RPC": { "USERNAME": "foo", "PASSWORD": "bar" diff --git a/production/mempool-config.liquid.json b/production/mempool-config.liquid.json index e3fb2c454..dc29af452 100644 --- a/production/mempool-config.liquid.json +++ b/production/mempool-config.liquid.json @@ -8,11 +8,19 @@ "API_URL_PREFIX": "/api/v1/", "WEBSOCKET_REFRESH_RATE_MS": 2000 }, + "SYSLOG" : { + "MIN_PRIORITY": "debug" + }, "CORE_RPC": { "PORT": 7041, "USERNAME": "foo", "PASSWORD": "bar" }, + "SECOND_CORE_RPC": { + "PORT": 8332, + "USERNAME": "foo", + "PASSWORD": "bar" + }, "ESPLORA": { "REST_API_URL": "http://127.0.0.1:4001" }, diff --git a/production/mempool-config.mainnet.json b/production/mempool-config.mainnet.json index 6d6a94f48..49ce69479 100644 --- a/production/mempool-config.mainnet.json +++ b/production/mempool-config.mainnet.json @@ -7,9 +7,19 @@ "SPAWN_CLUSTER_PROCS": 0, "API_URL_PREFIX": "/api/v1/", "CLEAR_PROTECTION_MINUTES": 5, - "POLL_RATE_MS": 2000 + "POLL_RATE_MS": 2000, + "USE_SECOND_NODE_FOR_MINFEE": true + }, + "SYSLOG" : { + "MIN_PRIORITY": "debug" }, "CORE_RPC": { + "PORT": 8332, + "USERNAME": "foo", + "PASSWORD": "bar" + }, + "SECOND_CORE_RPC": { + "PORT": 8302, "USERNAME": "foo", "PASSWORD": "bar" }, diff --git a/production/mempool-config.signet.json b/production/mempool-config.signet.json index de7e078f4..57246160c 100644 --- a/production/mempool-config.signet.json +++ b/production/mempool-config.signet.json @@ -8,6 +8,9 @@ "API_URL_PREFIX": "/api/v1/", "POLL_RATE_MS": 2000 }, + "SYSLOG" : { + "MIN_PRIORITY": "debug" + }, "CORE_RPC": { "PORT": 38332, "USERNAME": "foo", diff --git a/production/mempool-config.testnet.json b/production/mempool-config.testnet.json index f1f81d03c..e96689d06 100644 --- a/production/mempool-config.testnet.json +++ b/production/mempool-config.testnet.json @@ -8,6 +8,9 @@ "API_URL_PREFIX": "/api/v1/", "POLL_RATE_MS": 2000 }, + "SYSLOG" : { + "MIN_PRIORITY": "debug" + }, "CORE_RPC": { "PORT": 18332, "USERNAME": "foo",