From c32a9b8ce769d89f4474532bcbfef99193c15577 Mon Sep 17 00:00:00 2001 From: Nex Date: Mon, 15 Jun 2020 07:29:47 +0800 Subject: [PATCH] Add Transaction.block_timestamp --- grpc/pb/bdware/bdledger/api/common.proto | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/grpc/pb/bdware/bdledger/api/common.proto b/grpc/pb/bdware/bdledger/api/common.proto index f43acc1..6d2f693 100644 --- a/grpc/pb/bdware/bdledger/api/common.proto +++ b/grpc/pb/bdware/bdledger/api/common.proto @@ -16,17 +16,18 @@ enum TransactionType { } message Transaction { - bytes block_hash = 1; // 事务所在的区块的哈希,当事务处于待确认状态时为`null` - uint32 index = 2; // 事务在区块中的位置 index,当事务处于待确认状态时为`null` - bytes hash = 3; // 事务的哈希 - TransactionType type = 4; // 事务类型 - bytes from = 5; // 发送账户地址 - uint64 nonce = 6; // 这条事务之前发送者所发送的事务数量 - bytes to = 7; // 接收账户地址,或者调用的合约地址,或者`null`如为合约创建 - bytes data = 8; // 数据或合约代码 - bytes v = 9; // ECDSA recovery id - bytes r = 10; // ECDSA signature r - bytes s = 11; // ECDSA signature s + bytes block_hash = 1; // 事务所在的区块的哈希,当事务处于待确认状态时为`null` + int64 block_timestamp = 2; // 事务所在的区块产生时的 UNIX 时间戳,单位为秒 + uint32 index = 3; // 事务在区块中的位置 index,当事务处于待确认状态时为`null` + bytes hash = 4; // 事务的哈希 + TransactionType type = 5; // 事务类型 + bytes from = 6; // 发送账户地址 + uint64 nonce = 7; // 这条事务之前发送者所发送的事务数量 + bytes to = 8; // 接收账户地址,或者调用的合约地址,或者`null`如为合约创建 + bytes data = 9; // 数据或合约代码 + bytes v = 10; // ECDSA recovery id + bytes r = 11; // ECDSA signature r + bytes s = 12; // ECDSA signature s } message Block {