Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion documentation.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@
},
"ID": {
"type": "string",
"format": "byte"
"format": "int64"
},
"RecipientAccountAddress": {
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion model/transaction.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ option go_package = "github.com/zoobc/zoobc-core/common/model";
// Transaction represent the transaction data structure stored in the database
message Transaction {
uint32 Version = 1;
bytes ID = 2;
int64 ID = 2;
int64 BlockID = 3;
uint32 Height = 4;
uint32 SenderAccountType = 5;
Expand Down