Skip to content

Commit

Permalink
deps: update tenderdash image to dashpay/tenderdash:fix-wrong-propose…
Browse files Browse the repository at this point in the history
…r-at-round
  • Loading branch information
lklimek committed Sep 18, 2024
1 parent 48a0332 commit 3ef4139
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 @@ -311,7 +311,7 @@ export default function getBaseConfigFactory() {
tenderdash: {
mode: 'full',
docker: {
image: 'dashpay/tenderdash:1',
image: 'dashpay/tenderdash:fix-wrong-proposer-at-round',
},
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 @@ -886,6 +886,13 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
});
return configFile;
},
'1.3.0-dev.6': (configFile) => {
Object.entries(configFile.configs)
.forEach(([name, options]) => {

Check failure on line 891 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 = 'dashpay/tenderdash:fix-wrong-proposer-at-round';
});
return configFile;
},
};
}

Expand Down

0 comments on commit 3ef4139

Please sign in to comment.