File tree 4 files changed +41
-3
lines changed
core/src/main/java/org/web3j/protocol/core/methods/response
4 files changed +41
-3
lines changed Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
See [ Conventional Commits] ( https://conventionalcommits.org ) for commit guidelines.
5
5
6
+ # [ 4.11.2] ( ) (Upcoming)
7
+
8
+ ### Bug Fixes
9
+
10
+ *
11
+
12
+ ### Features
13
+
14
+ *
15
+
16
+ ### BREAKING CHANGES
17
+
18
+ *
19
+
20
+
21
+ # [ 4.11.1] ( https://github.com/web3j/web3j/releases/tag/v4.11.1 ) (2024-03-14)
22
+
23
+ ### Bug Fixes
24
+
25
+ * fix versionedHashes to blobVersionedHashes [ #2009 ] ( https://github.com/web3j/web3j/pull/2009 )
26
+ * Fix typos [ #2010 ] ( https://github.com/web3j/web3j/pull/2010 )
27
+
28
+ ### Features
29
+
30
+ * ** EIP-4844:** Calculate baseFeePerBlobGas value and other EIP4844 changes [ #2006 ] ( https://github.com/web3j/web3j/pull/2006 )
31
+ * ** EIP-4788:** add parentBeaconBlockRoot field [ #2007 ] ( https://github.com/web3j/web3j/pull/2007 )
32
+ * Add function to link binary with reference libraries in wrappers contract deployment [ #1988 ] ( https://github.com/web3j/web3j/pull/1988 )
33
+ * Added files for repo migration [ #2011 ] ( https://github.com/web3j/web3j/pull/2011 )
34
+
35
+ ### BREAKING CHANGES
36
+
37
+ * NIL
38
+
39
+
6
40
# [ 4.11.0] ( https://github.com/web3j/web3j/compare/v4.10.3...v4.11.0 ) (2024-02-14)
7
41
8
42
### Bug Fixes
Original file line number Diff line number Diff line change 30
30
// test dependencies
31
31
equalsverifierVersion = ' 3.14.1'
32
32
junitVersion = ' 5.5.2'
33
- web3jUnitVersion = ' 4.11.0 '
33
+ web3jUnitVersion = ' 4.11.1 '
34
34
junitBenchmarkVersion = ' 0.7.2'
35
35
logbackVersion = ' 1.4.14'
36
36
mockitoJunitVersion = ' 3.1.0'
Original file line number Diff line number Diff line change @@ -615,7 +615,11 @@ public int hashCode() {
615
615
+ (getMaxFeePerBlobGasRaw () != null
616
616
? getMaxFeePerBlobGasRaw ().hashCode ()
617
617
: 0 );
618
- result = 31 * result + (getBlobVersionedHashes () != null ? getBlobVersionedHashes ().hashCode () : 0 );
618
+ result =
619
+ 31 * result
620
+ + (getBlobVersionedHashes () != null
621
+ ? getBlobVersionedHashes ().hashCode ()
622
+ : 0 );
619
623
result = 31 * result + (getAccessList () != null ? getAccessList ().hashCode () : 0 );
620
624
return result ;
621
625
}
Original file line number Diff line number Diff line change 1
1
group =org.web3j
2
- version =4.11.1 -SNAPSHOT
2
+ version =4.11.2 -SNAPSHOT
You can’t perform that action at this time.
0 commit comments