From f24a7b5f759920f62db1a131a9a9d31408edd0b2 Mon Sep 17 00:00:00 2001 From: Sjors Provoost Date: Mon, 11 May 2026 11:30:27 +0200 Subject: [PATCH] doc: recommend script_flags instead of deployments.taproot Co-authored-by: maflcko <6399679+maflcko@users.noreply.github.com> --- doc/release-notes-26201.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/release-notes-26201.md b/doc/release-notes-26201.md index 66c9da54061..108b1bfd47e 100644 --- a/doc/release-notes-26201.md +++ b/doc/release-notes-26201.md @@ -1,4 +1,9 @@ RPC --- -- 'taproot' has been removed from 'getdeploymentinfo' because its historical activation height is no longer used anywhere in the codebase. (#26201) +- 'taproot' has been removed from 'getdeploymentinfo' because its historical + activation height is no longer used anywhere in the codebase. + Applications that rely on `deployments.taproot` to detect Taproot support + should either assume Taproot to be always active (since Bitcoin Core v24.0), + or check for `TAPROOT` in the `script_flags` array returned by + `getdeploymentinfo` (since Bitcoin Core v31.0). (#26201)