Skip to content

Commit 6cf0f5a

Browse files
authored
Fix typos (#1679)
* fix typos * fix typo
1 parent 736a3fb commit 6cf0f5a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The following GoQuorum-related libraries/applications have been created by Third
6060
* [ERC20 REST service](https://github.com/web3labs/erc20-rest-service) - a GoQuorum-supported RESTful service for creating and managing ERC-20 tokens
6161
* [Nethereum Quorum](https://github.com/Nethereum/Nethereum/tree/master/src/Nethereum.Quorum) - a .NET GoQuorum adapter
6262
* [web3j-quorum](https://github.com/web3j/web3j-quorum) - an extension to the web3j Java library providing support for the GoQuorum API
63-
* [Apache Camel](http://github.com/apache/camel) - an Apache Camel component providing support for the GoQuorum API using web3j library. Here is the artcile describing how to use Apache Camel with Ethereum and GoQuorum https://medium.com/@bibryam/enterprise-integration-for-ethereum-fa67a1577d43
63+
* [Apache Camel](http://github.com/apache/camel) - an Apache Camel component providing support for the GoQuorum API using web3j library. Here is the article describing how to use Apache Camel with Ethereum and GoQuorum https://medium.com/@bibryam/enterprise-integration-for-ethereum-fa67a1577d43
6464

6565
## Contributing
6666
GoQuorum is built on open source and we invite you to contribute enhancements. Upon review you will be required to complete a Contributor License Agreement (CLA) before we are able to merge. If you have any questions about the contribution process, please feel free to send an email to [[email protected]](mailto:[email protected]). Please see the [Contributors guide](.github/CONTRIBUTING.md) for more information about the process.
@@ -101,4 +101,4 @@ The go-ethereum binaries (i.e. all code inside of the `cmd` directory) is licens
101101
[GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html), also included
102102
in our repository in the `COPYING` file.
103103

104-
Any project planning to use the `crypto/secp256k1` sub-module must use the specific [secp256k1 standalone library](https://github.com/ConsenSys/goquorum-crypto-secp256k1) licensed under 3-clause BSD.
104+
Any project planning to use the `crypto/secp256k1` sub-module must use the specific [secp256k1 standalone library](https://github.com/ConsenSys/goquorum-crypto-secp256k1) licensed under 3-clause BSD.

eth/tracers/api.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ func (context *chainContext) CheckAndSetPrivateState(txLogs []*types.Log, privat
132132

133133
// End Quorum
134134

135-
// chainContext construts the context reader which is used by the evm for reading
135+
// chainContext constructs the context reader which is used by the evm for reading
136136
// the necessary chain context.
137137
func (api *API) chainContext(ctx context.Context) core.ChainContext {
138138
return &chainContext{api: api, ctx: ctx}
@@ -226,13 +226,13 @@ type blockTraceTask struct {
226226
statedb *state.StateDB // Intermediate state prepped for tracing
227227
block *types.Block // Block to trace the transactions from
228228
rootref common.Hash // Trie root reference held for this task
229-
results []*txTraceResult // Trace results procudes by the task
229+
results []*txTraceResult // Trace results produced by the task
230230
// Quorum
231231
privateStateDb *state.StateDB
232232
privateStateRepo mps.PrivateStateRepository
233233
}
234234

235-
// blockTraceResult represets the results of tracing a single block when an entire
235+
// blockTraceResult represents the results of tracing a single block when an entire
236236
// chain is being traced.
237237
type blockTraceResult struct {
238238
Block hexutil.Uint64 `json:"block"` // Block number corresponding to this trace
@@ -730,7 +730,7 @@ func (api *API) standardTraceBlockToFile(ctx context.Context, block *types.Block
730730
}
731731
}
732732
for i, tx := range block.Transactions() {
733-
// Prepare the trasaction for un-traced execution
733+
// Prepare the transaction for un-traced execution
734734
var (
735735
msg, _ = tx.AsMessage(signer)
736736
txContext = core.NewEVMTxContext(msg)
@@ -955,7 +955,7 @@ func (api *API) traceTx(ctx context.Context, message core.Message, txctx *txTrac
955955
return nil, err
956956
}
957957
}
958-
// Constuct the JavaScript tracer to execute with
958+
// Construct the JavaScript tracer to execute with
959959
if tracer, err = New(*config.Tracer, txContext); err != nil {
960960
return nil, err
961961
}

0 commit comments

Comments
 (0)