Skip to content

Commit

Permalink
Merge pull request #1999 from Thabokani/master
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
NickSneo authored Feb 13, 2024
2 parents 36d778b + accd061 commit e02c56a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Thank you for reading this! If you'd like to report a bug or join in the buidl-i

* Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable.

* Make sure that the code is formated with Spotless by executing `./gradlew spotlessApply` otherwise the build will fail.
* Make sure that the code is formatted with Spotless by executing `./gradlew spotlessApply` otherwise the build will fail.

#### **Do you intend to add a new feature or change an existing one?**

Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/org/web3j/tx/RawTransactionManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public EthGetCode getCode(
}

/*
* @param rawTransaction a RawTransaction istance to be signed
* @param rawTransaction a RawTransaction instance to be signed
* @return The transaction signed and encoded without ever broadcasting it
*/
public String sign(RawTransaction rawTransaction) {
Expand Down
2 changes: 1 addition & 1 deletion crypto/src/main/java/org/web3j/crypto/Secp256k1JWK.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

/**
* This class consists in java representation of JWK file. It uses Builder pattern in order to
* generate the JWK content from the BCEC asymetric keys receive as parameters. This class supports
* generate the JWK content from the BCEC asymmetric keys receive as parameters. This class supports
* generation of JWK only for ECDSA type keys that have secp256k1 curve.
*/
@JsonDeserialize(builder = Secp256k1JWK.Builder.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TESSERA_VERSION=latest

FROM --platform=linux/amd64 quorumengineering/tessera:${TESSERA_VERSION}

# develop uses a debain container, all releases use an alpine container - this allows both to be used for the quickstart
# develop uses a debian container, all releases use an alpine container - this allows both to be used for the quickstart
# set the version in ../../.env
RUN if [ -e /sbin/apk ] ; then apk add gettext --no-cache ; else apt-get update && apt-get install -y gettext && rm -rf /var/lib/apt/lists/* ; fi

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ENV ES_HOST http://localhost:9200
ENV REDIS_HOST localhost
ENV REDIS_PORT 6379

# Remove exisiting file
# Remove exsiting file
RUN mkdir -p /usr/share/logstash/logs && \
rm -f /usr/share/logstash/pipeline/logstash.conf

Expand Down

0 comments on commit e02c56a

Please sign in to comment.