diff options
| author | Glenn Willen <[email protected]> | 2019-01-09 02:06:29 -0800 |
|---|---|---|
| committer | Glenn Willen <[email protected]> | 2019-02-11 12:23:14 -0800 |
| commit | c6c3d42a7d6b525144fc7fc6653cd11139d2b34a (patch) | |
| tree | 861f35c6e35fce6509182384fe42007fe864e88c /src/wallet/test | |
| parent | Factor BroadcastTransaction out of sendrawtransaction (diff) | |
| download | discoin-c6c3d42a7d6b525144fc7fc6653cd11139d2b34a.tar.xz discoin-c6c3d42a7d6b525144fc7fc6653cd11139d2b34a.zip | |
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.)
Diffstat (limited to 'src/wallet/test')
| -rw-r--r-- | src/wallet/test/psbt_wallet_tests.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/test/psbt_wallet_tests.cpp b/src/wallet/test/psbt_wallet_tests.cpp index 9918eeb89..0c5b7c7e9 100644 --- a/src/wallet/test/psbt_wallet_tests.cpp +++ b/src/wallet/test/psbt_wallet_tests.cpp @@ -5,6 +5,7 @@ #include <key_io.h> #include <script/sign.h> #include <util/strencodings.h> +#include <wallet/psbtwallet.h> #include <wallet/rpcwallet.h> #include <wallet/wallet.h> #include <univalue.h> |