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);