Fixed json serialization of rct::RCTTypeNull

rct::RCTTypeNull doesn't have these fields (ecdhInfo, outPk, txnFee).
remotes/1691602464505633909/tmp_refs/heads/wonerujo-v0.10.1
SChernykh 3 years ago
parent 7d2e717ee8
commit 07d82af979

@ -1091,9 +1091,12 @@ void toJsonValue(rapidjson::Writer<epee::byte_stream>& dest, const rct::rctSig&
}; };
INSERT_INTO_JSON_OBJECT(dest, type, sig.type); INSERT_INTO_JSON_OBJECT(dest, type, sig.type);
INSERT_INTO_JSON_OBJECT(dest, encrypted, sig.ecdhInfo); if (sig.type != rct::RCTTypeNull)
INSERT_INTO_JSON_OBJECT(dest, commitments, transform(sig.outPk, just_mask)); {
INSERT_INTO_JSON_OBJECT(dest, fee, sig.txnFee); INSERT_INTO_JSON_OBJECT(dest, encrypted, sig.ecdhInfo);
INSERT_INTO_JSON_OBJECT(dest, commitments, transform(sig.outPk, just_mask));
INSERT_INTO_JSON_OBJECT(dest, fee, sig.txnFee);
}
// prunable // prunable
if (!sig.p.bulletproofs.empty() || !sig.p.rangeSigs.empty() || !sig.p.MGs.empty() || !sig.get_pseudo_outs().empty()) if (!sig.p.bulletproofs.empty() || !sig.p.rangeSigs.empty() || !sig.p.MGs.empty() || !sig.get_pseudo_outs().empty())
@ -1122,9 +1125,12 @@ void fromJsonValue(const rapidjson::Value& val, rct::rctSig& sig)
} }
GET_FROM_JSON_OBJECT(val, sig.type, type); GET_FROM_JSON_OBJECT(val, sig.type, type);
GET_FROM_JSON_OBJECT(val, sig.ecdhInfo, encrypted); if (sig.type != rct::RCTTypeNull)
GET_FROM_JSON_OBJECT(val, sig.outPk, commitments); {
GET_FROM_JSON_OBJECT(val, sig.txnFee, fee); GET_FROM_JSON_OBJECT(val, sig.ecdhInfo, encrypted);
GET_FROM_JSON_OBJECT(val, sig.outPk, commitments);
GET_FROM_JSON_OBJECT(val, sig.txnFee, fee);
}
// prunable // prunable
const auto prunable = val.FindMember("prunable"); const auto prunable = val.FindMember("prunable");

Loading…
Cancel
Save