From 5d163cac54e1d60ca29925d2b2410502483514c1 Mon Sep 17 00:00:00 2001 From: nfel Date: Wed, 16 Jul 2025 16:39:12 +0330 Subject: [PATCH] v2: renamed usergettrxlist -> trxlistfilter Signed-off-by: nfel --- wallet/v1/msg.proto | 2 +- wallet/v1/srv.proto | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 3d77151..0970d59 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -390,7 +390,7 @@ message Transaction { double token_price = 21; } -message UserGetTransactionListReq { +message TransactionListFilter { auth.v1.InternalIAM iam = 1; optional int32 page_no = 2; optional int32 page_size = 3; diff --git a/wallet/v1/srv.proto b/wallet/v1/srv.proto index 6cbbb61..937158c 100644 --- a/wallet/v1/srv.proto +++ b/wallet/v1/srv.proto @@ -28,7 +28,7 @@ service WalletService { rpc GetBalance(BalanceReq) returns (BalanceRes); rpc CheckBalance(CheckBalanceReq) returns (base.v1.Empty); // Throws an error if balance is not enough - rpc UserGetTransactionList(UserGetTransactionListReq) returns (TransactionList); + rpc UserGetTransactionList(TransactionListFilter) returns (TransactionList); // Get Token from IPG is and internal api rpc IPGGetToken(IPGGetTokenReq) returns (IPGGetTokenRes);