docs: fix order of positional `start_slot` and `end_slot` in `getBlocks` API docs (#30351)

This commit is contained in:
Steven Luscher 2023-03-08 15:53:38 -08:00 committed by GitHub
parent d2fc2e5f62
commit 0c41c8ee1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -21,11 +21,11 @@ Returns a list of confirmed blocks between two slots
### Parameters:
<Parameter type={"u64"} required={true}>
end_slot, as <code>u64</code> integer
start_slot, as <code>u64</code> integer
</Parameter>
<Parameter type={"u64"} optional={true}>
start_slot, as <code>u64</code> integer (must be no more than 500,000 blocks
end_slot, as <code>u64</code> integer (must be no more than 500,000 blocks
higher than the `start_slot`)
</Parameter>