diff options
| author | Jonas Schnelli <[email protected]> | 2015-05-18 14:02:18 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-06-04 09:16:21 +0200 |
| commit | 9a8897f4ac992741e153d88b54bd2cde877c713d (patch) | |
| tree | e827981679708bae6bef1516d69efda3524b719f /src/test/base58_tests.cpp | |
| parent | remove JSON Spirit UniValue wrapper (diff) | |
| download | discoin-9a8897f4ac992741e153d88b54bd2cde877c713d.tar.xz discoin-9a8897f4ac992741e153d88b54bd2cde877c713d.zip | |
Remove JSON Spirit wrapper, remove JSON Spirit leftovers
- implement find_value() function for UniValue
- replace all Array/Value/Object types with UniValues, remove JSON Spirit to UniValue wrapper
- remove JSON Spirit sources
Diffstat (limited to 'src/test/base58_tests.cpp')
| -rw-r--r-- | src/test/base58_tests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/base58_tests.cpp b/src/test/base58_tests.cpp index 114bd79ea..9e74f5f42 100644 --- a/src/test/base58_tests.cpp +++ b/src/test/base58_tests.cpp @@ -17,9 +17,9 @@ #include <boost/foreach.hpp> #include <boost/test/unit_test.hpp> -#include "json_spirit_wrapper.h" -using namespace json_spirit; +#include "univalue/univalue.h" + extern UniValue read_json(const std::string& jsondata); BOOST_FIXTURE_TEST_SUITE(base58_tests, BasicTestingSetup) |