aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_protocol/cryptonote_protocol_defs.h
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-11-17 23:52:50 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-11-18 00:13:07 +0000
commit310b790a64648b088badeb5cbedaddce7fe8c35b (patch)
tree6792ffa5f1768e2af3f01fb5f3d9f09fe3dad086 /src/cryptonote_protocol/cryptonote_protocol_defs.h
parentMerge pull request #2818 (diff)
downloadmonero-310b790a64648b088badeb5cbedaddce7fe8c35b.tar.xz
make connection_id a string in RPC
It's sent as JSON, so raw binary is not appropriate
Diffstat (limited to 'src/cryptonote_protocol/cryptonote_protocol_defs.h')
-rw-r--r--src/cryptonote_protocol/cryptonote_protocol_defs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_defs.h b/src/cryptonote_protocol/cryptonote_protocol_defs.h
index 1804cc101..7cf7e4a4d 100644
--- a/src/cryptonote_protocol/cryptonote_protocol_defs.h
+++ b/src/cryptonote_protocol/cryptonote_protocol_defs.h
@@ -74,7 +74,7 @@ namespace cryptonote
uint32_t support_flags;
- boost::uuids::uuid connection_id;
+ std::string connection_id;
uint64_t height;
@@ -98,7 +98,7 @@ namespace cryptonote
KV_SERIALIZE(avg_upload)
KV_SERIALIZE(current_upload)
KV_SERIALIZE(support_flags)
- KV_SERIALIZE_VAL_POD_AS_BLOB(connection_id)
+ KV_SERIALIZE(connection_id)
KV_SERIALIZE(height)
END_KV_SERIALIZE_MAP()
};