From 8abd5b496bc42d4c418363e7bcfd3bd5a65cfebe Mon Sep 17 00:00:00 2001 From: Elichai Turkel Date: Fri, 2 Aug 2019 20:33:45 -0400 Subject: [PATCH 1/7] Add a BinaryTree Structure --- src/script/binarytree.h | 110 ++++++++++++++++++++++++++++++++++++++++ src/script/descriptor.h | 1 + 2 files changed, 111 insertions(+) create mode 100644 src/script/binarytree.h diff --git a/src/script/binarytree.h b/src/script/binarytree.h new file mode 100644 index 0000000000000..4bc5d696bea66 --- /dev/null +++ b/src/script/binarytree.h @@ -0,0 +1,110 @@ +// Copyright (c) 2018 The Bitcoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + + +#ifndef BITCOIN_BINARYTREE_H +#define BITCOIN_BINARYTREE_H + + +#include