diff --git a/bitcoin b/bitcoin index 0b4aa31..d822839 160000 --- a/bitcoin +++ b/bitcoin @@ -1 +1 @@ -Subproject commit 0b4aa31c34b239ec7da36760a2670792184c3ba8 +Subproject commit d82283950f5ff3b2116e705f931c6e89e5fdd0be diff --git a/manifest.yaml b/manifest.yaml index 8c4146d..2c4e037 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,10 +1,11 @@ id: bitcoind title: "Bitcoin Core" -version: 26.1.0 +version: 27.0.0 eos-version: 0.3.4.3 release-notes: | - * Update Bitcoin to [v26.1](https://github.com/bitcoin/bitcoin/releases/tag/v26.1) + * Update Bitcoin to [v27.0](https://github.com/bitcoin/bitcoin/releases/tag/v27.0) * Default mempoolfullrbf=1 on fresh installs + * Minor config description improvements * Notice! If Bitcoin gets stuck in "Stopping" status after the update, the solution is to restart your server. System -> Restart. license: MIT wrapper-repo: https://github.com/Start9Labs/bitcoind-wrapper diff --git a/scripts/services/getConfig.ts b/scripts/services/getConfig.ts index 71ae75c..ae10969 100644 --- a/scripts/services/getConfig.ts +++ b/scripts/services/getConfig.ts @@ -129,13 +129,13 @@ export const getConfig: T.ExpectedExports.getConfig = async (effects) => { txindex: { type: "boolean", name: "Transaction Index", - description: "Enable the Transaction Index (txindex)", + description: "By enabling Transaction Index (txindex) Bitcoin Core will build a complete transaction index. This allows Bitcoin Core to access any transaction with commands like `gettransaction`.", default: allowUnpruned, }, coinstatsindex: { type: "boolean", name: "Coinstats Index", - description: "Enable the Coinstats Index (coinstatsindex)", + description: "Enabling Coinstats Index reduces the time for the gettxoutsetinfo RPC to complete at the cost of using additional disk space", default: false, }, wallet: { diff --git a/scripts/services/migrations.ts b/scripts/services/migrations.ts index b112fb9..3da6706 100644 --- a/scripts/services/migrations.ts +++ b/scripts/services/migrations.ts @@ -268,5 +268,5 @@ export const migration: T.ExpectedExports.migration = ), }, }, - "26.1.0" + "27.0.0" );