Skip to content

Commit

Permalink
build(dashmate): change tenderdash image to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Jul 2, 2024
1 parent d77f365 commit 0d323c6
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 @@ -279,7 +279,7 @@ export default function getBaseConfigFactory(homeDir) {
tenderdash: {
mode: 'full',
docker: {
image: 'dashpay/tenderdash:1.0.0-dev.2',
image: 'dashpay/tenderdash:1.0.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 @@ -669,6 +669,13 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
});
return configFile;
},
'1.0.0-dev.17': (configFile) => {
Object.entries(configFile.configs)
.forEach(([name, options]) => {

Check failure on line 674 in packages/dashmate/configs/getConfigFileMigrationsFactory.js

View workflow job for this annotation

GitHub Actions / JS packages (dashmate) / Linting

'name' is defined but never used
options.platform.drive.tenderdash.docker.image = base.get('platform.drive.tenderdash.docker.image');
});
return configFile;
},
};
}

Expand Down

0 comments on commit 0d323c6

Please sign in to comment.