Skip to content

Commit

Permalink
Fix some typos (#6093)
Browse files Browse the repository at this point in the history
* Fix some typos
* Update plugin version

Signed-off-by: GoodDaisy <90915921+GoodDaisy@users.noreply.github.com>

---------

Signed-off-by: GoodDaisy <90915921+GoodDaisy@users.noreply.github.com>
  • Loading branch information
GoodDaisy committed Oct 30, 2023
1 parent 6dd558b commit e814886
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
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

0 comments on commit e814886

Please sign in to comment.