Skip to content

Commit

Permalink
add a note
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Dec 27, 2024
1 parent 655850d commit 49dfd2c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions boa/contracts/vvm/vvm_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ def deploy(self, *args, contract_name=None, env=None, **kwargs):
address, computation = env.deploy(
bytecode=self.bytecode + encoded_args, **kwargs
)

# TODO: pass thru contract_name
# NOTE: if computation.is_error, `self.at()` will raise a warning
# in the future we should refactor so that the warning is silenced
ret = self.at(address)

if computation.is_error:
Expand Down

0 comments on commit 49dfd2c

Please sign in to comment.