v2: check balance amount is not optional :)

Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
nfel 2025-06-24 11:28:48 +03:30
parent 15db1a0bfa
commit a2efb704b3
Signed by: nfel
GPG Key ID: DCC0BF3F92B0D45F

View File

@ -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
}