We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ae1f62 commit 5cc8dbeCopy full SHA for 5cc8dbe
1 file changed
core/Tron.proto
@@ -161,6 +161,8 @@ message Account {
161
int64 old_tron_power = 46;
162
Frozen tron_power = 47;
163
164
+ bool asset_optimized = 60;
165
+
166
// this account create time
167
int64 create_time = 0x09;
168
// this last operation time, including transfer, voting and so on. //FIXME fix grammar
@@ -598,6 +600,7 @@ enum ReasonCode {
598
600
TIME_OUT = 0x20;
599
601
CONNECT_FAIL = 0x21;
602
TOO_MANY_PEERS_WITH_SAME_IP = 0x22;
603
+ LIGHT_NODE_SYNC_FAIL = 0x23;
604
UNKNOWN = 0xFF;
605
}
606
@@ -619,6 +622,8 @@ message HelloMessage {
619
622
BlockId headBlockId = 6;
620
623
bytes address = 7;
621
624
bytes signature = 8;
625
+ int32 nodeType = 9;
626
+ int64 lowestBlockNum = 10;
627
628
629
message InternalTransaction {
0 commit comments