changed ordering of the specs to prefer contract level classification
This commit is contained in:
parent
0748a5f988
commit
4e4427b059
@ -51,7 +51,7 @@ def fetch_block(w3, base_provider, block_number: int) -> Block:
|
|||||||
|
|
||||||
## Get gas used by individual txs and store them too
|
## Get gas used by individual txs and store them too
|
||||||
txs_gas_data: Dict[str, Dict[str, Any]] = {}
|
txs_gas_data: Dict[str, Dict[str, Any]] = {}
|
||||||
|
"""
|
||||||
for transaction in block_data["transactions"]:
|
for transaction in block_data["transactions"]:
|
||||||
tx_hash = (transaction.hash).hex()
|
tx_hash = (transaction.hash).hex()
|
||||||
tx_data = w3.eth.get_transaction(tx_hash)
|
tx_data = w3.eth.get_transaction(tx_hash)
|
||||||
@ -63,7 +63,7 @@ def fetch_block(w3, base_provider, block_number: int) -> Block:
|
|||||||
"gasPrice": tx_data["gasPrice"],
|
"gasPrice": tx_data["gasPrice"],
|
||||||
"netFeePaid": tx_data["gasPrice"] * tx_receipt["gasUsed"],
|
"netFeePaid": tx_data["gasPrice"] * tx_receipt["gasUsed"],
|
||||||
}
|
}
|
||||||
|
"""
|
||||||
transaction_hashes = get_transaction_hashes(traces)
|
transaction_hashes = get_transaction_hashes(traces)
|
||||||
|
|
||||||
## Create a new object
|
## Create a new object
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
from .uniswap import UNISWAP_CLASSIFIER_SPECS
|
from .uniswap import UNISWAP_CLASSIFIER_SPECS
|
||||||
from .curve import CURVE_CLASSIFIER_SPECS
|
from .curve import CURVE_CLASSIFIER_SPECS
|
||||||
|
|
||||||
ALL_CLASSIFIER_SPECS = UNISWAP_CLASSIFIER_SPECS + CURVE_CLASSIFIER_SPECS
|
ALL_CLASSIFIER_SPECS = CURVE_CLASSIFIER_SPECS + UNISWAP_CLASSIFIER_SPECS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user