Skip to content

Commit

Permalink
docs(protobuf)/fix_struct_description
Browse files Browse the repository at this point in the history
  • Loading branch information
liukai committed Nov 27, 2023
1 parent be07f5c commit 9a4ddc1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Tron protobuf protocol document.md
Original file line number Diff line number Diff line change
Expand Up @@ -546,9 +546,9 @@ Transaction and transaction-related messages.

message `raw`

`ref_block_bytes`: Deprecated.
`ref_block_bytes`: now block bytes in transaction head.

`ref_block_num`: now block number in transaction head.
`ref_block_num`: Deprecated.

`ref_block_hash`: now block hash in transaction head.

Expand All @@ -565,15 +565,15 @@ Transaction and transaction-related messages.
```java
message raw {
bytes ref_block_bytes = 1;
int64 ref_block_num = 3;
int64 ref_block_num = 3;
bytes ref_block_hash = 4;
int64 expiration = 8;
int64 expiration = 8;
repeated authority auths = 9;
bytes data = 10;
bytes data = 10;
repeated Contract contract = 11;
bytes scripts = 12;
bytes scripts = 12;
int64 timestamp = 14;
int64 fee_limit = 18;
int64 fee_limit = 18;
}
```

Expand Down

0 comments on commit 9a4ddc1

Please sign in to comment.