diff options
author | Lee Clagett <code@leeclagett.com> | 2020-05-29 21:59:58 -0400 |
---|---|---|
committer | Lee Clagett <code@leeclagett.com> | 2020-08-14 19:46:33 +0000 |
commit | fe96e66ebe9fe38595adff32c6718be0abbdd002 (patch) | |
tree | ed79771f2bae07b866ad963fda0c6f1c831101cd /src/serialization/json_object.h | |
parent | Merge pull request #6354 (diff) | |
download | monero-fe96e66ebe9fe38595adff32c6718be0abbdd002.tar.xz |
Fix pruned tx for ZMQ's GetBlocksFast
Diffstat (limited to 'src/serialization/json_object.h')
-rw-r--r-- | src/serialization/json_object.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/serialization/json_object.h b/src/serialization/json_object.h index e016bef41..1dc6451cf 100644 --- a/src/serialization/json_object.h +++ b/src/serialization/json_object.h @@ -277,6 +277,8 @@ void fromJsonValue(const rapidjson::Value& val, cryptonote::rpc::BlockHeaderResp void toJsonValue(rapidjson::Writer<epee::byte_stream>& dest, const rct::rctSig& i); void fromJsonValue(const rapidjson::Value& val, rct::rctSig& sig); +void fromJsonValue(const rapidjson::Value& val, rct::ctkey& key); + void toJsonValue(rapidjson::Writer<epee::byte_stream>& dest, const rct::ecdhTuple& tuple); void fromJsonValue(const rapidjson::Value& val, rct::ecdhTuple& tuple); |