when a calling an external contract with no return value, the contract address could be evaluated twice. this is usually only an efficiency problem, but if evaluation of the contract address has side effects, it could result in double evaluation of the side effects.
in the following example, Foo(msg.sender).bar()
is the contract address for the following call (to .foo()
), and could get evaluated twice
interface Foo:
def foo(): nonpayable
def bar() -> address: nonpayable
@external
def do_stuff():
Foo(Foo(msg.sender).bar()).foo()
6b4d8ff185de071252feaa1c319712b2d6577f8d
assign contract addresses to variables. the above example would change to
@external
def do_stuff():
t: Foo = Foo(msg.sender).bar()
t.foo()
{ "nvd_published_at": "2022-06-09T09:15:00Z", "cwe_ids": [ "CWE-670" ], "severity": "HIGH", "github_reviewed": true, "github_reviewed_at": "2022-06-06T21:23:58Z" }