Skip to content
Merged
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
8 changes: 4 additions & 4 deletions core/Tron.proto
Original file line number Diff line number Diff line change
Expand Up @@ -322,9 +322,9 @@ message Transaction {
bytes ref_block_hash = 4;
int64 expiration = 8;
repeated authority auths = 9;
// data not used
// transaction note
bytes data = 10;
//only support size = 1, repeated list here for extension
//only support size = 1, repeated list here for extension
repeated Contract contract = 11;
// scripts not used
bytes scripts = 12;
Expand All @@ -333,7 +333,7 @@ message Transaction {
}

raw raw_data = 1;
// only support size = 1, repeated list here for muti-sig extension
// only support size = 1, repeated list here for muti-sig extension
repeated bytes signature = 2;
repeated Result ret = 5;
}
Expand Down Expand Up @@ -628,4 +628,4 @@ message NodeInfo {
string stackTrace = 7;
}
}
}
}
2 changes: 1 addition & 1 deletion core/contract/asset_issue_contract.proto
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ message ParticipateAssetIssueContract {
bytes to_address = 2;
bytes asset_name = 3; // this field is token name before the proposal ALLOW_SAME_TOKEN_NAME is active, otherwise it is token id and token is should be in string format.
int64 amount = 4; // the amount of drops
}
}
2 changes: 1 addition & 1 deletion core/contract/balance_contract.proto
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ message TransferContract {
bytes owner_address = 1;
bytes to_address = 2;
int64 amount = 3;
}
}
2 changes: 1 addition & 1 deletion core/contract/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ option go_package = "github.com/tronprotocol/grpc-gateway/core";
enum ResourceCode {
BANDWIDTH = 0x00;
ENERGY = 0x01;
}
}
2 changes: 1 addition & 1 deletion core/contract/exchange_contract.proto
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ message ExchangeTransactionContract {
bytes token_id = 3;
int64 quant = 4;
int64 expected = 5;
}
}
2 changes: 1 addition & 1 deletion core/contract/proposal_contract.proto
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ message ProposalCreateContract {
message ProposalDeleteContract {
bytes owner_address = 1;
int64 proposal_id = 2;
}
}
2 changes: 1 addition & 1 deletion core/contract/smart_contract.proto
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ message UpdateEnergyLimitContract {
bytes owner_address = 1;
bytes contract_address = 2;
int64 origin_energy_limit = 3;
}
}
2 changes: 1 addition & 1 deletion core/contract/vote_asset_contract.proto
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ message VoteAssetContract {
repeated bytes vote_address = 2;
bool support = 3;
int32 count = 5;
}
}
2 changes: 1 addition & 1 deletion core/contract/witness_contract.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ message VoteWitnessContract {
bytes owner_address = 1;
repeated Vote votes = 2;
bool support = 3;
}
}