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

Update docs for block_count arg #2104

Merged
merged 1 commit into from
Aug 11, 2021
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
7 changes: 4 additions & 3 deletions docs/web3.eth.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1053,9 +1053,10 @@ The following methods are available on the ``web3.eth`` namespace.

Returns transaction fee data for up to 1,024 blocks.

:param block_count: The number of blocks in the requested range. This value should be an :py:class:`int` between 1
and 1024. Less than requested may be returned if not all blocks are available.
:type block_count: int
:param block_count: The number of blocks in the requested range. Depending on the client, this
value should be either a :py:class:`int` between 1 and 1024 or a hexstring.
Less than requested may be returned if not all blocks are available.
:type block_count: int or hexstring
:param newest_block: The newest, highest-numbered, block in the requested range. This value may be an
:py:class:`int` or one of the predefined block parameters ``'latest'``, ``'earliest'``, or ``'pending'``.
:type newest_block: int or BlockParams
Expand Down
1 change: 1 addition & 0 deletions newsfragments/2104.doc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update feeHistory docs