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

Commit

Permalink
fix: migration to v0.20.0 fails (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Sep 16, 2021
1 parent 49fa9ff commit 150e0be
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 150e0be

Please sign in to comment.