If a contract creates a dependent contract with DepContract = new DepContract(), I cannot debug into functions of DepContract. The breakpoint just doesn't stop execution.
Steps to reproduce:
look at sample SwapContract -> SwapToken in project swap-contract
create a dependent contract yourself with B { A a = new A(); a.callDebugFunction() }
might be a dup!
If a contract creates a dependent contract with
DepContract = new DepContract()
, I cannot debug into functions of DepContract. The breakpoint just doesn't stop execution.Steps to reproduce:
B { A a = new A(); a.callDebugFunction() }