From 478f063c448e68ac59b3bda3fb9ea014f715b43e Mon Sep 17 00:00:00 2001 From: nfel Date: Sat, 5 Apr 2025 14:31:17 +0330 Subject: [PATCH] v2: asset id type ( str -> int ) 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 445526e..7bcf100 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -492,7 +492,7 @@ message LockAssetReq { message AssetDiscountReq { string code = 1; - string asset_id = 2; + int64 asset_id = 2; optional double amount = 3; // calculate discount amount }