From e818f08ac4ad23c7f2c63ee2aceeadf68754375b Mon Sep 17 00:00:00 2001 From: davide3011 Date: Fri, 6 Feb 2026 18:03:37 +0100 Subject: [PATCH] script: backport BIP341/BIP342 taproot/tapscript consensus rules --- src/script/interpreter.cpp | 469 +++++++++++++++++++++++++++++++++--- src/script/interpreter.h | 69 +++++- src/script/script.h | 22 +- src/script/script_error.cpp | 20 ++ src/script/script_error.h | 12 + src/script/standard.cpp | 12 + src/script/standard.h | 1 + 7 files changed, 569 insertions(+), 36 deletions(-) diff --git a/src/script/interpreter.cpp b/src/script/interpreter.cpp index 8f2fd3b..46b8ad5 100644 --- a/src/script/interpreter.cpp +++ b/src/script/interpreter.cpp @@ -11,6 +11,10 @@ #include #include