Skip to content

Commit

Permalink
fix a typo introduced in a merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Sep 13, 2023
1 parent 8db8783 commit 161d9e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions boa/vyper/contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -988,8 +988,8 @@ def __call__(self, *args, value=0, gas=None, sender=None, **kwargs):
ir_executor = self._ir_executor

override_bytecode = None
if hasattr(self, "override_bytecode"):
override_bytecode = self.override_bytecode
if hasattr(self, "_override_bytecode"):
override_bytecode = self._override_bytecode

with self.contract._anchor_source_map(self._source_map):
computation = self.env.execute_code(
Expand Down

0 comments on commit 161d9e7

Please sign in to comment.