Skip to content

Commit

Permalink
Merge branch 'v1.3-dev' into release_1.3.0-dev.6
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumExplorer authored Sep 18, 2024
2 parents 1cb02ab + 44c4731 commit 9c6ee9a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
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(([, options]) => {
options.platform.drive.tenderdash.docker.image = 'dashpay/tenderdash:fix-wrong-proposer-at-round';
});
return configFile;
},
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub(super) fn consensus_params_update_v0(
}
}
Network::Testnet => {
if epoch_info.is_first_block_of_epoch(1475) {
if epoch_info.is_first_block_of_epoch(1476) {
return Some(ConsensusParams {
block: None,
evidence: None,
Expand Down

0 comments on commit 9c6ee9a

Please sign in to comment.