We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22c9679 commit 7fc5946Copy full SHA for 7fc5946
src/main/java/io/api/etherscan/model/TxInternal.java
@@ -11,7 +11,7 @@
11
public class TxInternal extends BaseTx {
12
13
private String type;
14
- private long traceId;
+ private String traceId;
15
private int isError;
16
private String errCode;
17
@@ -20,7 +20,7 @@ public String getType() {
20
return type;
21
}
22
23
- public long getTraceId() {
+ public String getTraceId() {
24
return traceId;
25
26
@@ -44,15 +44,15 @@ public boolean equals(Object o) {
44
45
TxInternal that = (TxInternal) o;
46
47
- if (traceId != that.traceId)
+ if (!Objects.equals(traceId, that.traceId))
48
return false;
49
return Objects.equals(errCode, that.errCode);
50
51
52
@Override
53
public int hashCode() {
54
int result = super.hashCode();
55
- result = 31 * result + (int) (traceId ^ (traceId >>> 32));
+ result = 31 * result + (traceId != null ? traceId.hashCode() : 0);
56
result = 31 * result + (errCode != null ? errCode.hashCode() : 0);
57
return result;
58
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments