From e17720717a659a9ab0d1f1287dddf298fe78a338 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Fri, 5 Oct 2012 02:48:09 -0700 Subject: [PATCH] Placeholder until this unit test is complete. --- src/SerializedTransaction.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/SerializedTransaction.cpp b/src/SerializedTransaction.cpp index 5f978fa49..869a9b606 100644 --- a/src/SerializedTransaction.cpp +++ b/src/SerializedTransaction.cpp @@ -211,6 +211,8 @@ BOOST_AUTO_TEST_CASE( STrans_test ) } std::auto_ptr new_obj = STObject::parseJson(j.getJson(0), sfGeneric); if (new_obj.get() == NULL) BOOST_FAIL("Unable to build object from json"); + Log(lsINFO) << "ORIG: " << j.getJson(0); + Log(lsINFO) << "BUILT " << new_obj->getJson(0); } BOOST_AUTO_TEST_SUITE_END();