Skip to content

Commit

Permalink
Merge pull request #2014 from web3j/disable-integration-test
Browse files Browse the repository at this point in the history
Disable geth integration test
  • Loading branch information
gtebrean authored Mar 14, 2024
2 parents ccfef8b + 1c82a00 commit 44780cc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 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
4 changes: 2 additions & 2 deletions crypto/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ dependencies {
project(':rlp'),
project(':utils'),
"org.slf4j:slf4j-api:$slf4jVersion",
"com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
implementation("tech.pegasys:jc-kzg-4844:$kzg4844Version")
"com.fasterxml.jackson.core:jackson-databind:$jacksonVersion",
"tech.pegasys:jc-kzg-4844:$kzg4844Version"
implementation("io.tmio:tuweni-bytes:$tuweniVersion")
implementation("io.tmio:tuweni-units:$tuweniVersion")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotNull;

@Disabled
@EVMTest(type = NodeType.GETH)
public class GethIT {

Expand Down

0 comments on commit 44780cc

Please # to comment.