Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix collator selection workflow for baedeker
Browse files Browse the repository at this point in the history
BuddyGlas committed Sep 5, 2023
1 parent a3f391a commit 0872753
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .baedeker/collator-selection-opal.jsonnet
Original file line number Diff line number Diff line change
@@ -7,14 +7,14 @@ local relay = {
bin: 'bin/polkadot',
validatorIdAssignment: 'staking',
spec: {Genesis:{
chain: 'westend-local',
chain: 'rococo-local',
}},
nodes: {
[name]: {
bin: $.bin,
wantedKeys: 'relay',
},
for name in ['alice', 'bob']
for name in ['alice', 'bob', 'charlie']
},
};

4 changes: 2 additions & 2 deletions .baedeker/collator-selection-quartz.jsonnet
Original file line number Diff line number Diff line change
@@ -7,14 +7,14 @@ local relay = {
bin: 'bin/polkadot',
validatorIdAssignment: 'staking',
spec: {Genesis:{
chain: 'westend-local',
chain: 'rococo-local',
}},
nodes: {
[name]: {
bin: $.bin,
wantedKeys: 'relay',
},
for name in ['alice', 'bob']
for name in ['alice', 'bob', 'charlie']
},
};

4 changes: 2 additions & 2 deletions .baedeker/collator-selection-sapphire.jsonnet
Original file line number Diff line number Diff line change
@@ -7,14 +7,14 @@ local relay = {
bin: 'bin/polkadot',
validatorIdAssignment: 'staking',
spec: {Genesis:{
chain: 'westend-local',
chain: 'rococo-local',
}},
nodes: {
[name]: {
bin: $.bin,
wantedKeys: 'relay',
},
for name in ['alice', 'bob']
for name in ['alice', 'bob', 'charlie']
},
};

0 comments on commit 0872753

Please sign in to comment.