Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import org.apache.tuweni.units.bigints.UInt256;

/** return true when termination condition is fullfilled and the full sync should stop */
/** return true when termination condition is fulfilled and the full sync should stop */
public interface SyncTerminationCondition extends BooleanSupplier {

default boolean shouldContinueDownload() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public Transaction get(final GeneralStateTestCaseSpec.Indexes indexes) {
? null
: blobVersionedHashes.stream().map(VersionedHash::fromHexString).toList());
} catch (IllegalArgumentException iae) {
// versioned hash string was bad, so this is an invalid transaciton
// versioned hash string was bad, so this is an invalid transaction
return null;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public final class CodeSection {
final int outputs;
/** The Max stack height. */
final int maxStackHeight;
/** The byte offset from the begining of the container that the section starts at */
/** The byte offset from the beginning of the container that the section starts at */
final int entryPoint;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public ECRECPrecompiledContract(final GasCalculator gasCalculator) {
* Configure a new ECRecover precompile with a specific signature algorith and gas.
*
* @param gasCalculator the gas calculator
* @param signatureAlgorithm the algoritm (such as secp256k1 or secp256r1)
* @param signatureAlgorithm the algorithm (such as secp256k1 or secp256r1)
*/
public ECRECPrecompiledContract(
final GasCalculator gasCalculator, final SignatureAlgorithm signatureAlgorithm) {
Expand Down
2 changes: 1 addition & 1 deletion plugin-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,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 = 'MtslBKSKFkbHlLJZZ0j4Nv6CMKizULVXztr1tmDa9qA='
knownHash = 'ZXBvp7wuHQ8j4Gty2zg/gKdzgrOXSpehYukMuH98W/Y='
}
check.dependsOn('checkAPIChanges')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public interface KeyValueStorage extends Closeable {
/**
* Begins a fresh transaction, for sequencing operations for later atomic execution.
*
* @return transaciton to sequence key-value operations.
* @return transaction to sequence key-value operations.
* @throws StorageException problem encountered when starting a new transaction.
*/
KeyValueStorageTransaction startTransaction() throws StorageException;
Expand Down