Luis Enrique Muñoz Martín
Luis Enrique Muñoz Martín
Do we know what's the state of this?
Sorry @hdiass, we had a CI issue with PRs coming from other repos. Now it should be fixed. Could you please rebase your PR in order to pass the CI?...
Love it! I think can be quite useful for `pallet-loans`, checking that i.e. the portfolio can be correctly computed after a migration
Could these PRs, consume a lot of CI time @gpmayorga, maybe we can add them as a draft?
@gpmayorga do you know why CI fails here? Is it because the branch comes from a fork and makes the cache to fail?
`crossterm` used by `ruscii` already exposed those events and should offer a cross-compatible way of getting them. So it should not be difficult to implement.
Can we merge this soon in order to avoid some issues in `polkadot-1.7.2` upgrade with these migrations?
Ok 👍🏻 Finally, it's not urgent for me for the upgrade by now, so we can leave this here
Actually, this also reverts: ```solidity // SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.28; import "forge-std/Test.sol"; interface IExample { function foo(uint a) external; } contract MyContract { } contract MyTest is Test {...
Thanks for the answer! In my case, I have different dependencies that I want to mock. For me, it's really convenient just to do `vm.mockCall` in the same test case...