From bf5aeac558f9d698ea6c9a8f291b72eb9f1517fb Mon Sep 17 00:00:00 2001 From: nfel Date: Mon, 6 Jan 2025 00:55:40 +0330 Subject: [PATCH] v2: deposit added to tx type Signed-off-by: nfel --- wallet/v1/msg.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 612929e..eb6c055 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -232,7 +232,10 @@ enum TransactionType { REDEEM = 5; TRUST_LINE = 6; WAGE = 7; + EXTERNAL_DEPOSIT = 8; + INTERNAL_DEPOSIT = 9; } + enum TransactionStatus { UNDETERMINED = 0; FAILED = -10;