Skip to content

Commit

Permalink
Fixed typos that airdrop farmers found (erigontech#13118)
Browse files Browse the repository at this point in the history
Thank you airdrop farmers

---------

Co-authored-by: alex.sharov <[email protected]>
  • Loading branch information
Giulio2002 and AskAlexSharov authored Dec 16, 2024
1 parent 91c029d commit a216fd5
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ChangeLog
- milestone: https://github.com/erigontech/erigon/milestone/5
- Known problem:
- external CL support
- `erigon_getLatestLogs` not emplimented
- `erigon_getLatestLogs` not implemented

### Acknowledgements:

Expand Down
2 changes: 1 addition & 1 deletion cl/phase1/forkchoice/fork_graph/fork_graph_disk.go
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ func (f *forkGraphDisk) getState(blockRoot libcommon.Hash, alwaysCopy bool, addC
outState = f.currentState
}

// try and find the point of recconection
// try and find the point of recconnection
for copyReferencedState == nil {
block, isSegmentPresent := f.getBlock(currentIteratorRoot)
if !isSegmentPresent {
Expand Down
33 changes: 17 additions & 16 deletions cmd/rpcdaemon/README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
- [Introduction](#introduction)
- [Getting Started](#getting-started)
- [Running locally](#running-locally)
- [Running remotely](#running-remotely)
- [Healthcheck](#healthcheck)
- [Testing](#testing)
- [Running locally](#running-locally)
- [Running remotely](#running-remotely)
- [Healthcheck](#healthcheck)
- [Testing](#testing)
- [FAQ](#faq)
- [Relations between prune options and rpc methods](#relations-between-prune-options-and-rpc-methods)
- [RPC Implementation Status](#rpc-implementation-status)
- [Securing the communication between RPC daemon and Erigon instance via TLS and authentication](#securing-the-communication-between-rpc-daemon-and-erigon-instance-via-tls-and-authentication)
- [Ethstats](#ethstats)
- [Allowing only specific methods (Allowlist)](#allowing-only-specific-methods-allowlist)
- [Server load too high](#server-load-too-high)
- [Faster Batch requests](#faster-batch-requests)
- [Relations between prune options and rpc methods](#relations-between-prune-options-and-rpc-methods)
- [RPC Implementation Status](#rpc-implementation-status)
- [Securing the communication between RPC daemon and Erigon instance via TLS and authentication](#securing-the-communication-between-rpc-daemon-and-erigon-instance-via-tls-and-authentication)
- [Ethstats](#ethstats)
- [Allowing only specific methods (Allowlist)](#allowing-only-specific-methods-allowlist)
- [Server load too high](#server-load-too-high)
- [Faster Batch requests](#faster-batch-requests)
- [For Developers](#for-developers)
- [Code generation](#code-generation)
- [Code generation](#code-generation)

## Introduction

Expand Down Expand Up @@ -236,7 +236,7 @@ Label "remote" means: `--private.api.addr` flag is required.
The following table shows the current implementation status of Erigon's RPC daemon.

| Command | Avail | Notes |
| ------------------------------------------ | ------- | ------------------------------------ |
|--------------------------------------------|---------|--------------------------------------|
| admin_nodeInfo | Yes | |
| admin_peers | Yes | |
| admin_addPeer | Yes | |
Expand Down Expand Up @@ -325,8 +325,9 @@ The following table shows the current implementation status of Erigon's RPC daem
| engine_getPayloadV2 | Yes | |
| engine_getPayloadV3 | Yes | |
| | | |
| debug_accountRange | Yes | Private Erigon debug module |
| debug_accountAt | Yes | Private Erigon debug module |
| debug_getRawReceipts | Yes | `debug_` expected to be private |
| debug_accountRange | Yes | |
| debug_accountAt | Yes | |
| debug_getModifiedAccountsByNumber | Yes | |
| debug_getModifiedAccountsByHash | Yes | |
| debug_storageRangeAt | Yes | |
Expand Down Expand Up @@ -383,7 +384,7 @@ The following table shows the current implementation status of Erigon's RPC daem
### GraphQL

| Command | Avail | Notes |
| --------------- | ----- | ----- |
|-----------------|-------|-------|
| GetBlockDetails | Yes | |
| GetChainID | Yes | |

Expand Down
2 changes: 1 addition & 1 deletion cmd/snapshots/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Snapshots - tool for managing remote stanshots
# Snapshots - tool for managing remote snapshots

In the root of `Erigon` project, use this command to build the commands:

Expand Down
2 changes: 1 addition & 1 deletion polygon/bridge/mdbx_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import (
e.g. For block 10 with events [1,2,3], block 15 with events [4,5,6] and block 20 with events [7,8].
The DB will have the following.
10: 0 (initialized at zero, NOTE: Polygon does not have and event 0)
10: 0 (initialized at zero, NOTE: Polygon does not have an event 0)
15: 3
20: 6
Expand Down
4 changes: 2 additions & 2 deletions turbo/app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

This command connects erigon to diagnostics tools by establishing websocket connection.

In order to conect diagnostics run
In order to connect diagnostics run

```
./build/bin/erigon support --debug.addrs <value> --diagnostics.addr <value> --diagnostics.sessions <PINs>
Expand Down Expand Up @@ -46,7 +46,7 @@ in the rclone config file.
The **uploader** is configured to minimize disk usage by doing the following:

* It removes snapshots once they are loaded
* It agressively prunes the database once entites are transferred to snapshots
* It agressively prunes the database once entities are transferred to snapshots

in addition to this it has the following performance related features:

Expand Down

0 comments on commit a216fd5

Please sign in to comment.