Skip to content

Commit

Permalink
chore(dashmate): update Core to 21.2 nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Sep 4, 2024
1 parent 76cfbd9 commit 587952a
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 @@ -54,7 +54,7 @@ export default function getBaseConfigFactory(homeDir) {
port: 3001,
},
docker: {
image: 'dashpay/dashd:21',
image: 'dashpay/dashd:21.2.0-nightly.2024.09.0',
commandArgs: [],
},
p2p: {
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 @@ -853,6 +853,13 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)
});
return configFile;
},
'1.3.0-dev.1': (configFile) => {
Object.entries(configFile.configs)
.forEach(([, options]) => {
options.core.docker.image = 'dashpay/dashd:21.2.0-nightly.2024.09.0';
});
return configFile;
},
};
}

Expand Down

0 comments on commit 587952a

Please sign in to comment.