Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

fix: migration to v0.20.0 fails #426

Merged
merged 2 commits into from
Sep 16, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions configs/migrations.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ module.exports = {

config.core.docker.image = systemConfigs.base.core.docker.image;

config.core.sentinel.image = systemConfigs.base.sentinel.docker.image;
config.core.sentinel.docker.image = systemConfigs.base.core.sentinel.docker.image;
}
});

Expand All @@ -225,7 +225,7 @@ module.exports = {
.platform.drive.abci.validatorSet.llmqType;

Object.entries(configFile.configs)
.filter(([, config]) => config.group === 'local')
.filter(([, config]) => config.group === 'local' && config.platform)
.forEach(([, config]) => {
config.platform.drive.abci.validatorSet.llmqType = systemConfigs.local
.platform.drive.abci.validatorSet.llmqType;
Expand Down