Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in documentation and code #113

Merged
merged 2 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions op-defender/psp_executor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Settings of the HTTP API service:
| Port | API Path | HTTP Method |
| -------------- | -------------------- | ----------- |
| 8080 (Default) | `/api/psp_execution` | POST |
| 8080 (Default) | `/api/healtcheck` | GET |
| 8080 (Default) | `/api/healthcheck` | GET |

To run the psp_executor service, you can use the following command:

Expand All @@ -35,8 +35,6 @@ Explanation of the options:
| `--chainid` | 11155111 | Chain ID for the network |
| `--superchainconfig.address` | 0xC2Be75506d5724086DEB7245bd260Cc9753911Be | Address of SuperchainConfig contract |
| `--rpc.url` | http://localhost:8545 | URL of the RPC node |
| `--port.api` | 8080 | Port for the HTTP API server |

| `--port.api` | 8080 | Port for the HTTP API server |
**PSPs Format**
The PSPs are stored with a JSON format. The JSON file should contain an array of PSPs. Each PSP should have the following fields:
Expand Down
2 changes: 1 addition & 1 deletion op-monitorism/multisig/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func NewMonitor(ctx context.Context, log log.Logger, m metrics.Factory, cfg CLIC
unexpectedRpcErrors: m.NewCounterVec(prometheus.CounterOpts{
Namespace: MetricsNamespace,
Name: "unexpectedRpcErrors",
Help: "number of unexpcted rpc errors",
Help: "number of unexpected rpc errors",
}, []string{"section", "name"}),
}, nil
}
Expand Down