File tree 5 files changed +5
-5
lines changed
core/src/main/java/org/web3j/tx
crypto/src/main/java/org/web3j/crypto
integration-tests/src/test/resources/quorum-test-network
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Thank you for reading this! If you'd like to report a bug or join in the buidl-i
14
14
15
15
* Ensure the PR description clearly describes the problem and solution. Include the relevant issue number if applicable.
16
16
17
- * Make sure that the code is formated with Spotless by executing ` ./gradlew spotlessApply ` otherwise the build will fail.
17
+ * Make sure that the code is formatted with Spotless by executing ` ./gradlew spotlessApply ` otherwise the build will fail.
18
18
19
19
#### ** Do you intend to add a new feature or change an existing one?**
20
20
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ public EthGetCode getCode(
178
178
}
179
179
180
180
/*
181
- * @param rawTransaction a RawTransaction istance to be signed
181
+ * @param rawTransaction a RawTransaction instance to be signed
182
182
* @return The transaction signed and encoded without ever broadcasting it
183
183
*/
184
184
public String sign (RawTransaction rawTransaction ) {
Original file line number Diff line number Diff line change 22
22
23
23
/**
24
24
* This class consists in java representation of JWK file. It uses Builder pattern in order to
25
- * generate the JWK content from the BCEC asymetric keys receive as parameters. This class supports
25
+ * generate the JWK content from the BCEC asymmetric keys receive as parameters. This class supports
26
26
* generation of JWK only for ECDSA type keys that have secp256k1 curve.
27
27
*/
28
28
@ JsonDeserialize (builder = Secp256k1JWK .Builder .class )
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ ARG TESSERA_VERSION=latest
2
2
3
3
FROM --platform=linux/amd64 quorumengineering/tessera:${TESSERA_VERSION}
4
4
5
- # develop uses a debain container, all releases use an alpine container - this allows both to be used for the quickstart
5
+ # develop uses a debian container, all releases use an alpine container - this allows both to be used for the quickstart
6
6
# set the version in ../../.env
7
7
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
8
8
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ ENV ES_HOST http://localhost:9200
4
4
ENV REDIS_HOST localhost
5
5
ENV REDIS_PORT 6379
6
6
7
- # Remove exisiting file
7
+ # Remove exsiting file
8
8
RUN mkdir -p /usr/share/logstash/logs && \
9
9
rm -f /usr/share/logstash/pipeline/logstash.conf
10
10
You can’t perform that action at this time.
0 commit comments