Skip to content

Commit 3f3ffe9

Browse files
forfreedayliukai
andauthored
docs(protobuf): change transaction data structure description (#5602)
Co-authored-by: liukai <kayle.liu@tron.network>
1 parent a66316c commit 3f3ffe9

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

Tron protobuf protocol document.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -546,11 +546,11 @@ Transaction and transaction-related messages.
546546

547547
message `raw`
548548

549-
`ref_block_bytes`: Deprecated.
549+
`ref_block_bytes`: intercepted part of the now block bytes in transaction head.
550550

551-
`ref_block_num`: now block number in transaction head.
551+
`ref_block_num`: Deprecated.
552552

553-
`ref_block_hash`: now block hash in transaction head.
553+
`ref_block_hash`:intercepted part of the now block hash in transaction head..
554554

555555
`expiration`: the expiration time in transaction head.
556556

@@ -565,15 +565,15 @@ Transaction and transaction-related messages.
565565
```java
566566
message raw {
567567
bytes ref_block_bytes = 1;
568-
int64 ref_block_num = 3;
568+
int64 ref_block_num = 3;
569569
bytes ref_block_hash = 4;
570-
int64 expiration = 8;
570+
int64 expiration = 8;
571571
repeated authority auths = 9;
572-
bytes data = 10;
572+
bytes data = 10;
573573
repeated Contract contract = 11;
574-
bytes scripts = 12;
574+
bytes scripts = 12;
575575
int64 timestamp = 14;
576-
int64 fee_limit = 18;
576+
int64 fee_limit = 18;
577577
}
578578
```
579579

0 commit comments

Comments
 (0)