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
Currently, warp apply only updates in place or extends. It cannot do both in a single call. This is problematic because if there are both kinds of updates, then multiple warp apply are needed.
As shown in Renzo's deployment config, a config is added to extend and a new multisig ISM is added for each existing chain.
Update warp apply such that only 1 call is needed for all config updates.
The text was updated successfully, but these errors were encountered:
### Description
This PR fixes a limitation in `warp apply` such that it can only extend
_or_ update an existing warp route. This means that for configs with
both changes require `warp apply` to be called multiple times. An
example is when Renzo deploys to new chain, and it needs to update the
existing ISMs.
### Related issues
- Fixes#4671
### Backward compatibility
Yes
### Testing
Manual/Unit Tests
Problem
Currently,
warp apply
only updates in place or extends. It cannot do both in a single call. This is problematic because if there are both kinds of updates, then multiplewarp apply
are needed.As shown in Renzo's deployment config, a config is added to extend and a new multisig ISM is added for each existing chain.
Update
warp apply
such that only 1 call is needed for all config updates.The text was updated successfully, but these errors were encountered: