Skip to content

Commit

Permalink
make gradle dependency verification on verkle lenient
Browse files Browse the repository at this point in the history
Signed-off-by: Luis Pinto <[email protected]>
  • Loading branch information
lu-pinto committed Jan 7, 2025
1 parent 6239173 commit eaba024
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ long touchAndChargeValueTransferSelfDestruct(
* in the account.
*
* @param address where the contract is being deployed
* @param codeLength total size of the contract's code
* @return stateless costs associated with accesses
*/
long touchCodeChunksUponContractCreation(Address address, long codeLength);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ private static boolean isOsakaAtGenesis(final GenesisConfig genesis) {
return isVerkleAtGenesis(genesis);
}

private static boolean isVerkleAtGenesis(final GenesisConfigFile genesis) {
private static boolean isVerkleAtGenesis(final GenesisConfig genesis) {
final OptionalLong verkleTimestamp = genesis.getConfigOptions().getVerkleTime();
if (verkleTimestamp.isPresent()) {
return genesis.getTimestamp() >= verkleTimestamp.getAsLong();
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ org.gradle.welcome=never
# versionappendcommit=true

# Optional, skip dependency verification for dev/debug builds
# org.gradle.dependency.verification=lenient
org.gradle.dependency.verification=lenient


# Set exports/opens flags required by Google Java Format and ErrorProne plugins. (JEP-396)
Expand Down
2 changes: 1 addition & 1 deletion plugin-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Calculated : ${currentHash}
tasks.register('checkAPIChanges', FileStateChecker) {
description = "Checks that the API for the Plugin-API project does not change without deliberate thought"
files = sourceSets.main.allJava.files
knownHash = '+YR9PYN+gPCvXzK2w52ypz9dZ0FOy0G3I1PljZasOkU='
knownHash = 'iXB9eWeTq1e/uWXSb2dNTa7yL1BCunZ2doLC26y6VrA='
}
check.dependsOn('checkAPIChanges')

Expand Down

0 comments on commit eaba024

Please sign in to comment.