From db69e4f2d3b0a98da149d96ae40a06e773e99b03 Mon Sep 17 00:00:00 2001 From: nfel Date: Tue, 31 Dec 2024 13:09:23 +0330 Subject: [PATCH] v2: transaction schema changes Signed-off-by: nfel --- wallet/v1/msg.proto | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 0741af4..612929e 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -274,10 +274,13 @@ message UserGetTransactionListReq { optional int64 to_federation_id = 9; optional double amount_from = 10; optional double amount_to = 11; - optional TransactionStatus status = 12; - optional TransactionType type = 13; - optional string tracking_code = 14; + optional string tracking_code = 12; + repeated TransactionType type = 13; + repeated TransactionStatus status = 14; + optional string from_date = 15; + optional string to_date = 16; } + /* Buy */