diff options
| author | Pieter Wuille <[email protected]> | 2014-09-08 20:34:01 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-09-08 20:34:01 +0200 |
| commit | eecd3c0fb0625b036f68a7830dda8edde21fcb90 (patch) | |
| tree | 1017c1bfb9599c9dfa3d6d8327d8b65862ee0d74 /src/test/multisig_tests.cpp | |
| parent | Merge pull request #4865 (diff) | |
| parent | Separate script/sign (diff) | |
| download | discoin-eecd3c0fb0625b036f68a7830dda8edde21fcb90.tar.xz discoin-eecd3c0fb0625b036f68a7830dda8edde21fcb90.zip | |
Merge pull request #4754
e088d65 Separate script/sign (jtimon)
9294a4b Separate CScriptCompressor (jtimon)
c4408a6 Separate script/standard (jtimon)
da03e6e Separate script/interpreter (jtimon)
cbd22a5 Move CScript class and dependencies to script/script (jtimon)
86dbeea Rename script.h/.cpp to scriptutils.h/.cpp (plus remove duplicated includes) (jtimon)
Rebased-by: Pieter Wuille
Diffstat (limited to 'src/test/multisig_tests.cpp')
| -rw-r--r-- | src/test/multisig_tests.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/test/multisig_tests.cpp b/src/test/multisig_tests.cpp index 02c6d095f..6c5afa130 100644 --- a/src/test/multisig_tests.cpp +++ b/src/test/multisig_tests.cpp @@ -5,7 +5,10 @@ #include "key.h" #include "keystore.h" #include "main.h" -#include "script.h" +#include "script/script.h" +#include "script/interpreter.h" +#include "script/sign.h" +#include "scriptutils.h" #include "uint256.h" #include <boost/assign/std/vector.hpp> |