From c6c3d42a7d6b525144fc7fc6653cd11139d2b34a Mon Sep 17 00:00:00 2001 From: Glenn Willen Date: Wed, 9 Jan 2019 02:06:29 -0800 Subject: Move PSBT definitions and code to separate files Move non-wallet PSBT code to src/psbt.{h,cpp}, and PSBT wallet code to src/wallet/psbtwallet.{h,cpp}. This commit contains only code movement (and adjustments to includes and Makefile.am.) --- src/psbt.h | 553 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 553 insertions(+) create mode 100644 src/psbt.h (limited to 'src/psbt.h') diff --git a/src/psbt.h b/src/psbt.h new file mode 100644 index 0000000000..fbe55ca100 --- /dev/null +++ b/src/psbt.h @@ -0,0 +1,553 @@ +// Copyright (c) 2009-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_PSBT_H +#define BITCOIN_PSBT_H + +#include +#include +#include +#include