diff options
| author | Jeff Garzik <[email protected]> | 2014-06-23 23:16:33 -0400 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2014-07-29 11:13:27 -0400 |
| commit | b2aeaa79393608132104183eba117fcbf583148e (patch) | |
| tree | 98bc68b1a815c0afe644e56e6fa6eb47297fe355 /src/test/transaction_tests.cpp | |
| parent | Consolidate CTransaction hex encode/decode into core_io.h, core_{read,write}.cpp (diff) | |
| download | discoin-b2aeaa79393608132104183eba117fcbf583148e.tar.xz discoin-b2aeaa79393608132104183eba117fcbf583148e.zip | |
Move ParseScript() helper, becoming accessible outside src/test/
Diffstat (limited to 'src/test/transaction_tests.cpp')
| -rw-r--r-- | src/test/transaction_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/transaction_tests.cpp b/src/test/transaction_tests.cpp index 238033f40..03919e7c7 100644 --- a/src/test/transaction_tests.cpp +++ b/src/test/transaction_tests.cpp @@ -9,6 +9,7 @@ #include "keystore.h" #include "main.h" #include "script.h" +#include "core_io.h" #include <map> #include <string> @@ -24,7 +25,6 @@ using namespace boost::algorithm; // In script_tests.cpp extern Array read_json(const std::string& jsondata); -extern CScript ParseScript(string s); unsigned int ParseFlags(string strFlags){ unsigned int flags = 0; |