diff options
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/miniscript.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/script/miniscript.h b/src/script/miniscript.h index 54eda4b286..4774308920 100644 --- a/src/script/miniscript.h +++ b/src/script/miniscript.h @@ -779,8 +779,11 @@ public: //! Check whether there is no satisfaction path that contains both timelocks and heightlocks bool CheckTimeLocksMix() const { return GetType() << "k"_mst; } - //! Do all sanity checks. - bool IsSane() const { return IsValid() && IsNonMalleable() && CheckTimeLocksMix() && CheckOpsLimit() && CheckStackSize(); } + //! Whether successful non-malleable satisfactions are guaranteed to be valid. + bool ValidSatisfactions() const { return IsValid() && CheckOpsLimit() && CheckStackSize(); } + + //! Whether the apparent policy of this node matches its script semantics. + bool IsSane() const { return ValidSatisfactions() && IsNonMalleable() && CheckTimeLocksMix(); } //! Check whether this node is safe as a script on its own. bool IsSaneTopLevel() const { return IsValidTopLevel() && IsSane() && NeedsSignature(); } |