From bc45ea703d8b1ec8becabb84de330c4613b0d5d2 Mon Sep 17 00:00:00 2001 From: Shadowy Super Coder Date: Thu, 16 May 2024 15:56:50 -0600 Subject: [PATCH 1/2] update instructions and config --- instructions.md | 2 +- scripts/services/getConfig.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/instructions.md b/instructions.md index 28c228c..ca95787 100644 --- a/instructions.md +++ b/instructions.md @@ -8,7 +8,7 @@ Your node is highly configurable. Many settings are considered _advanced_ and sh ### Syncing -Depending on your Internet bandwidth, how many other services are running, and what peers your node happens to connect to, your node should take anywhere from 2-7 days to sync from genesis to present. +Depending on your hardware resources, internet bandwidth, how many other services are running, and what peers your node happens to connect to, your node should take anywhere from under a day to several days to sync from genesis to present. ### Using a Wallet diff --git a/scripts/services/getConfig.ts b/scripts/services/getConfig.ts index ae10969..22cdf36 100644 --- a/scripts/services/getConfig.ts +++ b/scripts/services/getConfig.ts @@ -210,7 +210,7 @@ export const getConfig: T.ExpectedExports.getConfig = async (effects) => { mempoolfullrbf: { name: "Enable Full RBF", description: - "Policy for your node to use for relaying and mining unconfirmed transactions. For details, see https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-24.0.md#notice-of-new-option-for-transaction-replacement-policies", + "Policy for your node to use for relaying and mining unconfirmed transactions. For details, see https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-24.0.1.md#notice-of-new-option-for-transaction-replacement-policies", type: "boolean", default: true, }, @@ -308,7 +308,7 @@ export const getConfig: T.ExpectedExports.getConfig = async (effects) => { description: "Blockchain Pruning Options\nReduce the blockchain size on disk\n", warning: - "Disabling pruning will convert your node into a full archival node. This requires a resync of the entire blockchain, a process that may take several days. Make sure you have enough free disk space or you may fill up your disk.\n", + "Disabling pruning will convert your node into a full archival node. This requires a resync of the entire blockchain, a process that may take several days.\n", tag: { id: "mode", name: "Pruning Mode", From f13e2094e71f4352790a325e066c7ce3122b17d2 Mon Sep 17 00:00:00 2001 From: Shadowy Super Coder Date: Tue, 21 May 2024 15:37:53 -0600 Subject: [PATCH 2/2] improve zmq-enabled config description --- scripts/services/getConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/services/getConfig.ts b/scripts/services/getConfig.ts index 22cdf36..3bcc08c 100644 --- a/scripts/services/getConfig.ts +++ b/scripts/services/getConfig.ts @@ -123,7 +123,7 @@ export const getConfig: T.ExpectedExports.getConfig = async (effects) => { "zmq-enabled": { type: "boolean", name: "ZeroMQ Enabled", - description: "Enable the ZeroMQ interface", + description: "The ZeroMQ interface is useful for some applications which might require data related to block and transaction events from Bitcoin Core. For example, LND requires ZeroMQ be enabled for LND to get the latest block data", default: true, }, txindex: {