From f6004a9ee82afad4abd51e059784856738404540 Mon Sep 17 00:00:00 2001 From: Nex Date: Mon, 25 May 2020 21:36:58 +0800 Subject: [PATCH] Add SendTransactionRequest.Transaction.nonce --- grpc/pb/bdware/bdledger/api/ledger.proto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/grpc/pb/bdware/bdledger/api/ledger.proto b/grpc/pb/bdware/bdledger/api/ledger.proto index 83ba2b4..764dcc3 100644 --- a/grpc/pb/bdware/bdledger/api/ledger.proto +++ b/grpc/pb/bdware/bdledger/api/ledger.proto @@ -42,8 +42,9 @@ message SendTransactionRequest { message Transaction { TransactionType type = 1; bytes from = 2; - bytes to = 3; - bytes data = 4; + uint64 nonce = 3; + bytes to = 4; + bytes data = 5; } Transaction transaction = 2; }