crytic / etheno

Simplify Ethereum security analysis and testing
GNU Affero General Public License v3.0
330 stars 31 forks source link

Fix issue with function call logging and PEP 8 Compliance #109

Closed anishnaik closed 2 years ago

anishnaik commented 2 years ago
  1. This PR will fix issue #93 where function calls in hardhat are not logged because eth_getTransactionReceipt is not called for them. The solution is to track all unlogged function calls / contract creations and call eth_getTransactionReceipt for each one manually before the shutdown of the system
  2. The code is now PEP 8 Compliant which was done by using the black package.