Update Bitcoin feature toggle confirmation messages to mention timechain preservation

Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/c318d542-bd1b-4fd8-a100-7ec8e5041623

Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-04-08 12:41:45 +00:00
committed by GitHub
parent 7781d6c849
commit f021f56318

View File

@@ -361,9 +361,9 @@ function handleFeatureToggle(feat, newEnabled) {
if (conflictNames.length > 0) { if (conflictNames.length > 0) {
var confirmMsg; var confirmMsg;
if (feat.id === "bip110") { if (feat.id === "bip110") {
confirmMsg = "Only one Bitcoin node implementation can be active. Enabling Bitcoin Knots + BIP110 will disable Bitcoin Core (if active). Continue?"; confirmMsg = "Only one Bitcoin node implementation can be active. Enabling Bitcoin Knots + BIP110 will disable Bitcoin Core (if active). Your timechain data will be preserved — you will not need to re-download the timechain. Continue?";
} else if (feat.id === "bitcoin-core") { } else if (feat.id === "bitcoin-core") {
confirmMsg = "Only one Bitcoin node implementation can be active. Enabling Bitcoin Core will disable Bitcoin Knots + BIP110 (if active). Continue?"; confirmMsg = "Only one Bitcoin node implementation can be active. Enabling Bitcoin Core will disable Bitcoin Knots + BIP110 (if active). Your timechain data will be preserved — you will not need to re-download the timechain. Continue?";
} else { } else {
confirmMsg = "This will disable " + conflictNames.join(", ") + ". Continue?"; confirmMsg = "This will disable " + conflictNames.join(", ") + ". Continue?";
} }