Skip to content

Commit

Permalink
PENDING: Use json_spirit to format tx description for pending object
Browse files Browse the repository at this point in the history
  • Loading branch information
zathras-crypto committed May 20, 2015
1 parent d5eca15 commit b903929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/omnicore_pending.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void PendingAdd(const uint256& txid, const std::string& sendingAddress, const st
txobj.push_back(Pair("action", action));
break;
}
std::string txDesc = write_string(Value(txobj), false);
std::string txDesc = write_string(Value(txobj), true);
CMPPending pending;
if (msc_debug_pending) file_log("%s(%s,%s,%s,%d,%u,%ld,%u,%ld,%d,%s)\n", __FUNCTION__, txid.GetHex(), sendingAddress, refAddress,
type, propertyId, amount, propertyIdDesired, amountDesired, action, txDesc);
Expand Down

0 comments on commit b903929

Please sign in to comment.