diff options
| author | Andrew Chow <[email protected]> | 2019-06-06 22:52:24 +0200 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2019-07-09 16:20:18 -0400 |
| commit | 37a79a4fccbf6cd65a933594e24e59d36e674653 (patch) | |
| tree | 3ef48673c8380a9c7a18cd2e790512177384ca54 /src/test/script_p2sh_tests.cpp | |
| parent | Move KeyOriginInfo to its own header file (diff) | |
| download | discoin-37a79a4fccbf6cd65a933594e24e59d36e674653.tar.xz discoin-37a79a4fccbf6cd65a933594e24e59d36e674653.zip | |
Move various SigningProviders to signingprovider.{cpp,h}
Moves all of the various SigningProviders out of sign.{cpp,h} and
keystore.{cpp,h}. As such, keystore.{cpp,h} is also removed.
Includes and the Makefile are updated to reflect this. Includes were largely
changed using:
git grep -l "keystore.h" | xargs sed -i -e 's;keystore.h;script/signingprovider.h;g'
Diffstat (limited to 'src/test/script_p2sh_tests.cpp')
| -rw-r--r-- | src/test/script_p2sh_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/script_p2sh_tests.cpp b/src/test/script_p2sh_tests.cpp index 0c701a413..f451d8098 100644 --- a/src/test/script_p2sh_tests.cpp +++ b/src/test/script_p2sh_tests.cpp @@ -4,13 +4,13 @@ #include <consensus/tx_verify.h> #include <key.h> -#include <keystore.h> #include <validation.h> #include <policy/policy.h> #include <script/script.h> #include <script/script_error.h> #include <policy/settings.h> #include <script/sign.h> +#include <script/signingprovider.h> #include <test/setup_common.h> #include <vector> |