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/script_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/script_tests.cpp')
| -rw-r--r-- | src/test/script_tests.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/test/script_tests.cpp b/src/test/script_tests.cpp index 77c44501a..88efc3896 100644 --- a/src/test/script_tests.cpp +++ b/src/test/script_tests.cpp @@ -2,15 +2,14 @@ // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#include "script.h" - #include "data/script_invalid.json.h" #include "data/script_valid.json.h" #include "key.h" #include "keystore.h" #include "main.h" -#include "script.h" +#include "script/script.h" +#include "script/sign.h" #include "core_io.h" #include <fstream> |