Add Transaction.block_timestamp

This commit is contained in:
Nex 2020-06-15 07:29:47 +08:00
parent eb604852a8
commit c32a9b8ce7

View File

@ -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 {