Skip to content
Snippets Groups Projects
Commit 11cfdf71 authored by murgatroid99's avatar murgatroid99
Browse files

Removed a default value I missed

parent 0e199026
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ package examples; ...@@ -34,7 +34,7 @@ package examples;
// Protocol type definitions // Protocol type definitions
message StockRequest { message StockRequest {
string symbol = 1; string symbol = 1;
int32 num_trades_to_watch = 2 [default=0]; int32 num_trades_to_watch = 2;
} }
message StockReply { message StockReply {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment