diff --git a/guides/relay-receive-send-messages.md b/guides/relay-receive-send-messages.md index 9bc00e24ef..c29ab66821 100644 --- a/guides/relay-receive-send-messages.md +++ b/guides/relay-receive-send-messages.md @@ -107,7 +107,7 @@ import protons from 'protons'; const proto = protons(` message SimpleChatMessage { - float timestamp = 1; + uint64 timestamp = 1; string text = 2; } `); @@ -180,7 +180,7 @@ import protons from 'protons'; const proto = protons(` message SimpleChatMessage { - float timestamp = 1; + uint64 timestamp = 1; string text = 2; } `);