From 79caf595b32060407b3ae783f91a0cbbb7632afe Mon Sep 17 00:00:00 2001 From: Dylan Murray Date: Thu, 8 Feb 2024 10:06:08 -0500 Subject: [PATCH] Move to a new topic for STN --- app/config/envs/local.json | 1 + app/config/envs/mainnet.json | 1 + app/config/envs/production.json | 1 + app/config/envs/stn.json | 5 +++-- app/config/envs/test.json | 1 + app/config/envs/testnet.json | 3 ++- 6 files changed, 9 insertions(+), 3 deletions(-) diff --git a/app/config/envs/local.json b/app/config/envs/local.json index 7d0bbfd..9a88751 100644 --- a/app/config/envs/local.json +++ b/app/config/envs/local.json @@ -1,5 +1,6 @@ { "alert_webhook_url": "", + "bitcoin_config_path": "", "request_logging": true, "bitcoin_config_path": "/home/galt/.bitcoin/bitcoin.conf", "alert_processing_interval": "5m", diff --git a/app/config/envs/mainnet.json b/app/config/envs/mainnet.json index 42c91ab..c5f889a 100644 --- a/app/config/envs/mainnet.json +++ b/app/config/envs/mainnet.json @@ -1,5 +1,6 @@ { "alert_webhook_url": "", + "bitcoin_config_path": "", "request_logging": true, "web_server": { "idle_timeout": "60s", diff --git a/app/config/envs/production.json b/app/config/envs/production.json index 3c0a7d0..dbf27b5 100644 --- a/app/config/envs/production.json +++ b/app/config/envs/production.json @@ -1,5 +1,6 @@ { "alert_webhook_url": "", + "bitcoin_config_path": "", "request_logging": true, "web_server": { "idle_timeout": "60s", diff --git a/app/config/envs/stn.json b/app/config/envs/stn.json index 4c7c59e..f505a0d 100644 --- a/app/config/envs/stn.json +++ b/app/config/envs/stn.json @@ -1,5 +1,6 @@ { "alert_webhook_url": "", + "bitcoin_config_path": "", "request_logging": true, "alert_processing_interval": "5m", "web_server": { @@ -58,13 +59,13 @@ "alert_system_protocol_id": "/bitcoin-stn/alert-system/0.0.1", "bootstrap_peer": "", "private_key_path": "", - "topic_name": "alert_system_stn" + "topic_name": "bsv_alert_system_stn" }, "rpc_connections": [ { "user": "galt", "password": "galt", - "host": "http://localhost:8333" + "host": "http://localhost:9332" } ] } diff --git a/app/config/envs/test.json b/app/config/envs/test.json index 2acec9c..654afa1 100644 --- a/app/config/envs/test.json +++ b/app/config/envs/test.json @@ -1,5 +1,6 @@ { "alert_webhook_url": "https://webhook.url", + "bitcoin_config_path": "", "request_logging": true, "web_server": { "idle_timeout": "60s", diff --git a/app/config/envs/testnet.json b/app/config/envs/testnet.json index 9cec3da..7768954 100644 --- a/app/config/envs/testnet.json +++ b/app/config/envs/testnet.json @@ -1,5 +1,6 @@ { "alert_webhook_url": "", + "bitcoin_config_path": "", "request_logging": true, "alert_processing_interval": "5m", "web_server": { @@ -64,7 +65,7 @@ { "user": "galt", "password": "galt", - "host": "http://localhost:8333" + "host": "http://localhost:18332" } ] }