Skip to content

Commit 269ed47

Browse files
authored
Merge pull request #4199 from tronprotocol/release_v4.4.2
Release v4.4.2 to mater
2 parents c7a48f6 + d8f3110 commit 269ed47

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

framework/src/main/java/org/tron/core/services/jsonrpc/types/TransactionResult.java

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,24 @@
1919
@ToString
2020
public class TransactionResult {
2121

22-
private String hash;
23-
private String nonce;
24-
private String blockHash;
25-
private String blockNumber;
26-
private String transactionIndex;
27-
28-
private String from;
29-
private String to;
30-
private String gas;
31-
private String gasPrice;
32-
private String value;
33-
private String input;
34-
35-
private String v;
36-
private String r;
37-
private String s;
38-
39-
private String type = "0x0";
22+
public String hash;
23+
public String nonce;
24+
public String blockHash;
25+
public String blockNumber;
26+
public String transactionIndex;
27+
28+
public String from;
29+
public String to;
30+
public String gas;
31+
public String gasPrice;
32+
public String value;
33+
public String input;
34+
35+
public String v;
36+
public String r;
37+
public String s;
38+
39+
public String type = "0x0";
4040

4141
private void parseSignature(Transaction tx) {
4242

0 commit comments

Comments
 (0)