Skip to content

Commit adab573

Browse files
committed
release 4.11.1
1 parent 13015e5 commit adab573

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

core/src/main/java/org/web3j/protocol/core/methods/response/Transaction.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,11 @@ public int hashCode() {
615615
+ (getMaxFeePerBlobGasRaw() != null
616616
? getMaxFeePerBlobGasRaw().hashCode()
617617
: 0);
618-
result = 31 * result + (getBlobVersionedHashes() != null ? getBlobVersionedHashes().hashCode() : 0);
618+
result =
619+
31 * result
620+
+ (getBlobVersionedHashes() != null
621+
? getBlobVersionedHashes().hashCode()
622+
: 0);
619623
result = 31 * result + (getAccessList() != null ? getAccessList().hashCode() : 0);
620624
return result;
621625
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group=org.web3j
2-
version=4.11.1-SNAPSHOT
2+
version=4.11.1

0 commit comments

Comments
 (0)