Skip to content

Commit

Permalink
chore(dashmate): update tenderdash version to 1.2.0 (#2078)
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Aug 25, 2024
1 parent 42d7958 commit 1f037b1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dashmate/configs/defaults/getBaseConfigFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ export default function getBaseConfigFactory(homeDir) {
tenderdash: {
mode: 'full',
docker: {
image: 'dashpay/tenderdash:1.2.0-dev.3',
image: 'dashpay/tenderdash:1.2.0',
},
p2p: {
host: '0.0.0.0',
Expand Down
7 changes: 7 additions & 0 deletions packages/dashmate/configs/getConfigFileMigrationsFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -830,6 +830,13 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
});
return configFile;
},
'1.1.1': (configFile) => {
Object.entries(configFile.configs)
.forEach(([, options]) => {
options.platform.drive.tenderdash.docker.image = 'dashpay/tenderdash:1.2.0';
});
return configFile;
},
};
}

Expand Down

0 comments on commit 1f037b1

Please sign in to comment.