Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
chore(pkg): fix some typos (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
stanlagermin authored Oct 23, 2023
1 parent 7e39dc2 commit 57410f6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
* **proposer:** update pool content query ([#341](https://github.com/taikoxyz/taiko-client/issues/341)) ([221a3b9](https://github.com/taikoxyz/taiko-client/commit/221a3b92b77f4b3d3e5499eb27fa289ae44b0151))
* **proposer:** use `TaikoConfig.blockMaxGasLimit` as proposed block gasLimit && remove some unused flags ([#344](https://github.com/taikoxyz/taiko-client/issues/344)) ([f0a3da7](https://github.com/taikoxyz/taiko-client/commit/f0a3da7d6bf8af222ae6e780218ccca2c7861137))
* **prover:** add `--proofSubmissionMaxRetry` flag ([#333](https://github.com/taikoxyz/taiko-client/issues/333)) ([8d92b7a](https://github.com/taikoxyz/taiko-client/commit/8d92b7aa96d22ca20de57fd02e52d7f3f6ff9a5f))
* **prover:** changes based on `proofVerifer` protocol updates ([#338](https://github.com/taikoxyz/taiko-client/issues/338)) ([6dcb34a](https://github.com/taikoxyz/taiko-client/commit/6dcb34aab3619731852a19a09b54aadce34de999))
* **prover:** changes based on `proofVerifier` protocol updates ([#338](https://github.com/taikoxyz/taiko-client/issues/338)) ([6dcb34a](https://github.com/taikoxyz/taiko-client/commit/6dcb34aab3619731852a19a09b54aadce34de999))
* **prover:** prove block tx gas limit ([#357](https://github.com/taikoxyz/taiko-client/issues/357)) ([8ed4da2](https://github.com/taikoxyz/taiko-client/commit/8ed4da2f0bd0bf5f215767b1bd44106dd878431f))
* **rpc:** check if L1 rpc is an archive node ([#332](https://github.com/taikoxyz/taiko-client/issues/332)) ([b1aa1d3](https://github.com/taikoxyz/taiko-client/commit/b1aa1d388d407f2f5cb14275c006b1a22213b8ff))

Expand Down Expand Up @@ -240,7 +240,7 @@

### Features

* **all:** update client softwares based on the new protocol upgrade ([#185](https://github.com/taikoxyz/taiko-client/issues/185)) ([54f7a4c](https://github.com/taikoxyz/taiko-client/commit/54f7a4cb2db72a4ffa9a199e2af1f0d709a1ac27))
* **all:** update client software based on the new protocol upgrade ([#185](https://github.com/taikoxyz/taiko-client/issues/185)) ([54f7a4c](https://github.com/taikoxyz/taiko-client/commit/54f7a4cb2db72a4ffa9a199e2af1f0d709a1ac27))
* **driver:** changes based on protocol L2 EIP-1559 design ([#188](https://github.com/taikoxyz/taiko-client/issues/188)) ([82e8b97](https://github.com/taikoxyz/taiko-client/commit/82e8b9741782258840696701993b6d009d0260e0))
* **prover:** add oracle prover flag ([#194](https://github.com/taikoxyz/taiko-client/issues/194)) ([ebbc725](https://github.com/taikoxyz/taiko-client/commit/ebbc72559a70c9aefc34286b05b1f4261bae8cd6))
* **prover:** proof skip ([#198](https://github.com/taikoxyz/taiko-client/issues/198)) ([8607af8](https://github.com/taikoxyz/taiko-client/commit/8607af826ed9561a6bdae74074a517f1424e7a69))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Taiko protocol's client software implementation in Go. Learn more about Taiko no
| `cmd/` | Main executable for this project |
| `docs/` | Documentation |
| `driver/` | Driver sub-command |
| `integration_test/` | Scripts to do the integration testing of all client softwares |
| `integration_test/` | Scripts to do the integration testing of all client software |
| `metrics/` | Metrics related |
| `pkg/` | Library code which used by all sub-commands |
| `proposer/` | Proposer sub-command |
Expand Down
4 changes: 2 additions & 2 deletions cmd/flags/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var (
proverCategory = "PROVER"
)

// Required flags used by all client softwares.
// Required flags used by all client software.
var (
L1WSEndpoint = &cli.StringFlag{
Name: "l1.ws",
Expand Down Expand Up @@ -59,7 +59,7 @@ var (
Required: true,
Category: commonCategory,
}
// Optional flags used by all client softwares.
// Optional flags used by all client software.
// Logging
Verbosity = &cli.IntFlag{
Name: "verbosity",
Expand Down
4 changes: 2 additions & 2 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ func main() {
app := cli.NewApp()

app.Name = "Taiko Clients"
app.Usage = "The taiko client softwares command line interface"
app.Usage = "The taiko client software command line interface"
app.Copyright = "Copyright 2021-2022 Taiko Labs"
app.Version = version.VersionWithCommit()
app.Description = "Client softwares implementation in Golang for Taiko protocol"
app.Description = "Client software implementation in Golang for Taiko protocol"
app.Authors = []*cli.Author{{Name: "Taiko Labs", Email: "[email protected]"}}
app.EnableBashCompletion = true

Expand Down
2 changes: 1 addition & 1 deletion pkg/rpc/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ type ClientConfig struct {
BackOffMaxRetrys *big.Int
}

// NewClient initializes all RPC clients used by Taiko client softwares.
// NewClient initializes all RPC clients used by Taiko client software.
func NewClient(ctx context.Context, cfg *ClientConfig) (*Client, error) {
ctxWithTimeout, cancel := ctxWithTimeoutOrDefault(ctx, defaultTimeout)
defer cancel()
Expand Down
2 changes: 1 addition & 1 deletion pkg/rpc/fallback.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var (
)

// IsMaxPriorityFeePerGasNotFoundError returns true if the provided error
// signals that the backend does not support the eth_maxPrirorityFeePerGas
// signals that the backend does not support the eth_maxPriorityFeePerGas
// method. In this case, the caller should fallback to using the constant above.
func IsMaxPriorityFeePerGasNotFoundError(err error) bool {
return strings.Contains(
Expand Down

0 comments on commit 57410f6

Please sign in to comment.