From a2efb704b3fd43931d5d5c2458e6b4a59fdae085 Mon Sep 17 00:00:00 2001 From: nfel Date: Tue, 24 Jun 2025 11:28:48 +0330 Subject: [PATCH] v2: check balance amount is not optional :) Signed-off-by: nfel --- wallet/v1/msg.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 6fffc36..323541a 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -74,7 +74,7 @@ message BalanceReq{ message CheckBalanceReq{ auth.v1.InternalIAM iam = 1; int64 asset_id = 2; - optional double amount = 3; // Checks if user have enough balance + double amount = 3; // Checks if user have enough balance }