diff --git a/src/ape/api/address.py b/src/ape/api/address.py index 844a29288e..5aa9432e49 100644 --- a/src/ape/api/address.py +++ b/src/ape/api/address.py @@ -150,6 +150,7 @@ def code(self) -> "ContractCode": """ The raw bytes of the smart-contract code at the address. """ + # NOTE: Chain manager handles code caching. return self.chain_manager.get_code(self.address) @property