We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdf66b3 commit 44869e6Copy full SHA for 44869e6
.changeset/gentle-islands-cut.md
@@ -0,0 +1,5 @@
1
+---
2
+"@smartcontractkit/mcms": patch
3
4
+
5
+fix: avoid requiring all executors for converters generation
timelock_executable.go
@@ -262,7 +262,7 @@ func (t *TimelockExecutable) setPredecessors(ctx context.Context) error {
262
if len(t.predecessors) == 0 && len(t.executors) > 0 {
263
var err error
264
var converters = make(map[types.ChainSelector]sdk.TimelockConverter)
265
- for chainSelector := range t.executors {
+ for chainSelector := range t.proposal.ChainMetadata {
266
converters[chainSelector], err = newTimelockConverter(chainSelector)
267
if err != nil {
268
return fmt.Errorf("unable to create converter from executor: %w", err)
0 commit comments