diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2022-04-19 22:14:03 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2022-04-19 22:14:03 -0500 |
| commit | 96758a7d05bb1747951ffac87a307d592f882655 (patch) | |
| tree | 20900ece7aacd538bb3bacba72e7592e03bd915f /src/serialization/json_object.h | |
| parent | 53bf62d11457b011ac77d6d2947e662259cfec5e (diff) | |
| parent | ea87b30f8907ee11252433811e7a7d0c46758cca (diff) | |
| download | monzero-core-96758a7d05bb1747951ffac87a307d592f882655.tar.gz monzero-core-96758a7d05bb1747951ffac87a307d592f882655.tar.xz monzero-core-96758a7d05bb1747951ffac87a307d592f882655.zip | |
Merge pull request #8061
ea87b30 Add view tags to outputs to reduce wallet scanning time (j-berman)
Diffstat (limited to 'src/serialization/json_object.h')
| -rw-r--r-- | src/serialization/json_object.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/serialization/json_object.h b/src/serialization/json_object.h index e7caa8377..968707165 100644 --- a/src/serialization/json_object.h +++ b/src/serialization/json_object.h @@ -230,6 +230,9 @@ void fromJsonValue(const rapidjson::Value& val, cryptonote::txout_to_scripthash& void toJsonValue(rapidjson::Writer<epee::byte_stream>& dest, const cryptonote::txout_to_key& txout); void fromJsonValue(const rapidjson::Value& val, cryptonote::txout_to_key& txout); +void toJsonValue(rapidjson::Writer<epee::byte_stream>& dest, const cryptonote::txout_to_tagged_key& txout); +void fromJsonValue(const rapidjson::Value& val, cryptonote::txout_to_tagged_key& txout); + void toJsonValue(rapidjson::Writer<epee::byte_stream>& dest, const cryptonote::tx_out& txout); void fromJsonValue(const rapidjson::Value& val, cryptonote::tx_out& txout); |
