You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
calling bar in the following contract through my_contract.eval("self.bar") fails.
The problem can be circumvented by doing my_contract.eval("self.bar.address") as a temporary workaround but there are instances where this is not possible.
The text was updated successfully, but these errors were encountered:
given some interface
IFoo.vyi
And given an instance
my_contract
of the following contract:calling
bar
in the following contract throughmy_contract.eval("self.bar")
fails.The problem can be circumvented by doing
my_contract.eval("self.bar.address")
as a temporary workaround but there are instances where this is not possible.The text was updated successfully, but these errors were encountered: