From 2618601e70e4812326eeb18995958debc560b116 Mon Sep 17 00:00:00 2001 From: nfel Date: Mon, 7 Jul 2025 14:26:54 +0330 Subject: [PATCH] v2: these fields can be optional Signed-off-by: nfel --- auth/v1/msg.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auth/v1/msg.proto b/auth/v1/msg.proto index da146b2..4957773 100644 --- a/auth/v1/msg.proto +++ b/auth/v1/msg.proto @@ -157,8 +157,8 @@ message Identity { optional string employee_info = 23; string pub_key = 24; optional float balance = 25; - string postal_code = 26; - string user_address = 27; + optional string postal_code = 26; + optional string user_address = 27; } message IdentityBasic {