diff options
author | Andrew Chow <achow101-github@achow101.com> | 2022-08-16 15:26:19 -0400 |
---|---|---|
committer | Andrew Chow <github@achow101.com> | 2022-10-06 15:32:51 -0400 |
commit | 30ff25cf37eec4b09ab40424eb5d6a4a80410955 (patch) | |
tree | f6f200da113d198086856e5c4fc503ff38b84e3e /src/script | |
parent | 0577d423adda8e719d7611d03355680c8fbacab8 (diff) |
psbt: Only include m_tap_tree if it has scripts
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/standard.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/script/standard.h b/src/script/standard.h index 1e6769782a..966a52b2c7 100644 --- a/src/script/standard.h +++ b/src/script/standard.h @@ -315,6 +315,8 @@ public: TaprootSpendData GetSpendData() const; /** Returns a vector of tuples representing the depth, leaf version, and script */ std::vector<std::tuple<uint8_t, uint8_t, CScript>> GetTreeTuples() const; + /** Returns true if there are any tapscripts */ + bool HasScripts() const { return !m_branch.empty(); } }; /** Given a TaprootSpendData and the output key, reconstruct its script tree. |