From 6b59e649ffddd8d3fb46411e6c9722a1e93f8f8b Mon Sep 17 00:00:00 2001 From: itzaname Date: Wed, 16 Nov 2022 21:57:02 -0500 Subject: [PATCH] Update 'transactions.proto' Add transaction id to create rpc call Signed-off-by: itzaname --- transactions.proto | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/transactions.proto b/transactions.proto index 4996368..1003747 100644 --- a/transactions.proto +++ b/transactions.proto @@ -17,10 +17,11 @@ service TransactionsService { } message TransactionCreate { - int64 UserID = 1; - int64 Value = 2; - int32 StateID = 3; - google.protobuf.Struct Data = 4; + string ID = 1; + int64 UserID = 2; + int64 Value = 3; + int32 StateID = 4; + google.protobuf.Struct Data = 5; } message TransactionUpdate {