Skip to content

Commit

Permalink
fix: typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwise-constructs committed Aug 13, 2024
1 parent 160bf59 commit 0ba8769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/geth/test_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ def test_base_fee_no_history(geth_provider, mocker, ret):
def test_base_fee_hex_decode(geth_provider, mocker):
orig = geth_provider._web3.eth.fee_history
mock_fee_history = mocker.MagicMock()
mock_fee_history.return_value = {"baseFeePerGas": "0x7"}
mock_fee_history.return_value = {"baseFeePerGas": ["0x6", "0x7"]}
expected = 7
geth_provider._web3.eth.fee_history = mock_fee_history

Expand Down

0 comments on commit 0ba8769

Please sign in to comment.