Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ethereum/web3.py
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 942d61ea36f88606d75d26703020d044fd8c4c4a
Choose a base ref
..
head repository: ethereum/web3.py
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5cfc783a9f98928241aa8ba18f8f84be4b921e48
Choose a head ref
Showing with 1 addition and 2 deletions.
  1. +1 −2 tests/core/filtering/test_filters_against_many_blocks.py
3 changes: 1 addition & 2 deletions tests/core/filtering/test_filters_against_many_blocks.py
Original file line number Diff line number Diff line change
@@ -126,7 +126,6 @@ def test_event_filter_new_events_many_deployed_contracts(
emitter_event_ids,
create_filter):


matching_transact = emitter.functions.logNoArgs(
which=1).transact

@@ -135,7 +134,7 @@ def test_event_filter_new_events_many_deployed_contracts(
def gen_non_matching_transact():
while True:
contract_address = deployed_contract_addresses[
random.randint(0, len(deployed_contract_addresses)-1)]
random.randint(0, len(deployed_contract_addresses) - 1)]
yield web3.eth.contract(
address=contract_address, abi=Emitter.abi).functions.logNoArgs(which=1).transact