Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

Commit

Permalink
Merge branch 'develop' into junit/config
Browse files Browse the repository at this point in the history
  • Loading branch information
sasaxie committed Mar 14, 2018
1 parent 6910ef4 commit a58bf8e
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion core/Tron.proto
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,16 @@ message Transaction {
ContractType type = 1;
google.protobuf.Any parameter = 2;
}

message Result {
enum code {
SUCESS = 0;
FAILED = 1;
}
int64 fee = 1;
code ret = 2;
}

message raw {
TransactionType type = 2;
repeated TXInput vin = 5;
Expand All @@ -92,8 +102,10 @@ message Transaction {
repeated Contract contract = 11;
bytes scripts = 16;
}

raw raw_data = 1;
repeated bytes signature = 5;
repeated bytes signature = 2;
repeated Result ret = 5;
}

message BlockHeader {
Expand Down

0 comments on commit a58bf8e

Please sign in to comment.