Skip to content

Commit

Permalink
Fix Typo WorldState accordingly (#1476)
Browse files Browse the repository at this point in the history
Signed-off-by: ladidan <46406043+ladidan@users.noreply.github.com>
  • Loading branch information
ladidan authored Jan 8, 2024
1 parent 2a6a29c commit 23f6baa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/public-networks/reference/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -1357,7 +1357,7 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"debug_replayBlock","params":["0x
</Tabs>
### `debug_resyncWorldstate`
### `debug_resyncWorldState`
Triggers a re-synchronization of the world state while retaining imported blocks. This is useful if there are world state database inconsistencies (for example, Bonsai database issues).
Expand All @@ -1374,15 +1374,15 @@ None
<TabItem value="curl HTTP request" label="curl HTTP request" default>
```bash
curl -X POST --data '{"jsonrpc":"2.0","method":"debug_resyncWorldstate","params":[],"id":1}' http://127.0.0.1:8545
curl -X POST --data '{"jsonrpc":"2.0","method":"debug_resyncWorldState","params":[],"id":1}' http://127.0.0.1:8545
```
</TabItem>
<TabItem value="wscat WS request" label="wscat WS request">
```json
{ "jsonrpc": "2.0", "method": "debug_resyncWorldstate", "params": [], "id": 1 }
{ "jsonrpc": "2.0", "method": "debug_resyncWorldState", "params": [], "id": 1 }
```
</TabItem>
Expand Down

0 comments on commit 23f6baa

Please sign in to comment.