diff --git a/manifest.yaml b/manifest.yaml index 680fa5c0..207d11b3 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -5,6 +5,8 @@ release-notes: | * Add build for x86 * Update to latest upstream * Add Full RBF Config option + * Add action to delete peers.dat in case of corruption + * Remove dbcache limit (Please use large dbcache values with caution! We recommend not touching this setting unless you know what you're doing.) license: mit wrapper-repo: https://github.com/Start9Labs/bitcoind-wrapper upstream-repo: https://github.com/bitcoin/bitcoin diff --git a/scripts/services/getConfig.ts b/scripts/services/getConfig.ts index 9bd0fbc0..4dc13123 100644 --- a/scripts/services/getConfig.ts +++ b/scripts/services/getConfig.ts @@ -280,7 +280,7 @@ export const getConfig: T.ExpectedExports.getConfig = compat.getConfig({ "description": "How much RAM to allocate for caching the TXO set. Higher values improve syncing performance, but increase your chance of using up all your system's memory or corrupting your database in the event of an ungraceful shutdown. Set this high but comfortably below your system's total RAM during IBD, then turn down to 450 (or leave blank) once the sync completes.", "warning": - "WARNING: Increasing this value results in a higher chance of ungraceful shutdowns, which can leave your node unusable if it happens during the initial block download. Use this setting with caution. Be sure to set this back to the default (450 or leave blank) once your node is synced.", + "WARNING: Increasing this value results in a higher chance of ungraceful shutdowns, which can leave your node unusable if it happens during the initial block download. Use this setting with caution. Be sure to set this back to the default (450 or leave blank) once your node is synced. DO NOT press the STOP button if your dbcache is large. Instead, set this number back to the default, hit save, and wait for bitcoind to restart on its own.", "range": "(0,*)", "integral": true, "units": "MiB",