File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
.github/actions/brownie_fork_tests Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 7676 env :
7777 ETHERSCAN_TOKEN : ${{ inputs.etherscan }}
7878 ETH_RPC_URL : ${{ inputs.rpc_url }}
79+ PARSE_EVENTS_FROM_LOCAL_ABI : 1
Original file line number Diff line number Diff line change @@ -216,12 +216,17 @@ def autodeploy_contract(accounts):
216216
217217@pytest .fixture (scope = "session" , autouse = True )
218218def parse_events_from_local_abi ():
219+ print ("os.getenv(ENV_PARSE_EVENTS_FROM_LOCAL_ABI):" , os .getenv (ENV_PARSE_EVENTS_FROM_LOCAL_ABI ))
220+ print ("os.getenv(ENV_OMNIBUS_BYPASS_EVENTS_DECODING):" , os .getenv (ENV_OMNIBUS_BYPASS_EVENTS_DECODING ))
221+
219222 if os .getenv (ENV_OMNIBUS_BYPASS_EVENTS_DECODING ):
220223 return
221224
222225 if not os .getenv (ENV_PARSE_EVENTS_FROM_LOCAL_ABI ):
223226 return
224227
228+ print ("parse_events_from_local_abi..." )
229+
225230 # Used if env variable PARSE_EVENTS_FROM_LOCAL_ABI is set
226231 # Needed to enable events checking if ABI from Etherscan not available for any reason
227232 contract_address_mapping = {
You can’t perform that action at this time.
0 commit comments