From b796181b0a079744a9a10570775b405e2e03f90a Mon Sep 17 00:00:00 2001 From: nfel Date: Sun, 18 May 2025 10:47:26 +0330 Subject: [PATCH] v2: transaction id added to contract gen res Signed-off-by: nfel --- wallet/v1/msg.proto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wallet/v1/msg.proto b/wallet/v1/msg.proto index 3c7c5aa..44cacc8 100644 --- a/wallet/v1/msg.proto +++ b/wallet/v1/msg.proto @@ -642,6 +642,7 @@ message GenerateContractReq { message ContractRes { string link = 1; uint64 aggreement_id = 2; - string contract_hash = 3; - string contract_content = 4; + uint64 transaction_id = 3; + string contract_hash = 4; + string contract_content = 5; }