Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions model/block.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ import "model/transaction.proto";
// Block represent the block data structure stored in the database
message Block {
int64 ID = 1;
string PreviousBlockHash = 2;
bytes PreviousBlockHash = 2;
uint32 Height = 3;
uint32 Timestamp = 4;
int64 Timestamp = 4;
bytes BlockSeed = 5;
bytes BlockSignature = 6;
string CumulativeDifficult = 7;
string CumulativeDifficulty = 7;
int64 SmithScale = 8;
bytes BlocksmithID = 9;
int64 TotalAmount = 10;
int64 TotalFee = 11;
int64 TotalCoinBase = 12;
uint32 Version = 13;
uint32 PayloadLength = 14;
string PayloadHash = 15;
bytes PayloadHash = 15;
repeated Transaction Transactions = 16;
}

Expand Down