Skip to content

Commit 44780cc

Browse files
authored
Merge pull request #2014 from web3j/disable-integration-test
Disable geth integration test
2 parents ccfef8b + 1c82a00 commit 44780cc

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

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

+5-1
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
}

crypto/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ dependencies {
99
project(':rlp'),
1010
project(':utils'),
1111
"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"
1414
implementation("io.tmio:tuweni-bytes:$tuweniVersion")
1515
implementation("io.tmio:tuweni-units:$tuweniVersion")
1616
}

integration-tests/src/test/java/org/web3j/protocol/geth/GethIT.java

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import static org.junit.jupiter.api.Assertions.assertFalse;
2929
import static org.junit.jupiter.api.Assertions.assertNotNull;
3030

31+
@Disabled
3132
@EVMTest(type = NodeType.GETH)
3233
public class GethIT {
3334

0 commit comments

Comments
 (0)