File tree 3 files changed +8
-3
lines changed
core/src/main/java/org/web3j/protocol/core/methods/response
integration-tests/src/test/java/org/web3j/protocol/geth
3 files changed +8
-3
lines changed 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 @@ -9,8 +9,8 @@ dependencies {
9
9
project(' :rlp' ),
10
10
project(' :utils' ),
11
11
" org.slf4j:slf4j-api:$slf4jVersion " ,
12
- " com.fasterxml.jackson.core:jackson-databind:$jacksonVersion "
13
- implementation( " tech.pegasys:jc-kzg-4844:$kzg4844Version " )
12
+ " com.fasterxml.jackson.core:jackson-databind:$jacksonVersion " ,
13
+ " tech.pegasys:jc-kzg-4844:$kzg4844Version "
14
14
implementation(" io.tmio:tuweni-bytes:$tuweniVersion " )
15
15
implementation(" io.tmio:tuweni-units:$tuweniVersion " )
16
16
}
Original file line number Diff line number Diff line change 28
28
import static org .junit .jupiter .api .Assertions .assertFalse ;
29
29
import static org .junit .jupiter .api .Assertions .assertNotNull ;
30
30
31
+ @ Disabled
31
32
@ EVMTest (type = NodeType .GETH )
32
33
public class GethIT {
33
34
You can’t perform that action at this time.
0 commit comments