Skip to content

Commit

Permalink
release 4.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gtebrean committed Mar 14, 2024
1 parent 13015e5 commit adab573
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,11 @@ public int hashCode() {
+ (getMaxFeePerBlobGasRaw() != null
? getMaxFeePerBlobGasRaw().hashCode()
: 0);
result = 31 * result + (getBlobVersionedHashes() != null ? getBlobVersionedHashes().hashCode() : 0);
result =
31 * result
+ (getBlobVersionedHashes() != null
? getBlobVersionedHashes().hashCode()
: 0);
result = 31 * result + (getAccessList() != null ? getAccessList().hashCode() : 0);
return result;
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=org.web3j
version=4.11.1-SNAPSHOT
version=4.11.1

0 comments on commit adab573

Please sign in to comment.