From 32d46850a5697a05cc22c53b171320f03c64cd89 Mon Sep 17 00:00:00 2001 From: nfel Date: Mon, 9 Dec 2024 13:41:08 +0330 Subject: [PATCH] v2: str -> double Signed-off-by: nfel --- wallet/v1/msg.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 99140f8..7aa4412 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -298,7 +298,7 @@ message Recipient { message InternalTransferAssetReq { auth.v1.InternalIAM iam = 1; Recipient recipient = 2; - string amount = 3; + double amount = 3; optional int64 network_id = 4; int64 asset_id = 5; optional bool approval = 6; @@ -307,7 +307,7 @@ message InternalTransferAssetReq { message InternalTransferAssetRes { Recipient recipient = 1; - string amount = 2; + double amount = 2; string transaction_id = 3; string transaction_hash = 4; } @@ -394,4 +394,4 @@ message GetPublicKeyByNationalIDReq { message GetPublicKeyByNationalIDRes { string pub_key = 1; -} \ No newline at end of file +}