Skip to content

Commit

Permalink
fix: runtime error: index out of range 28 with length 28
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Dec 19, 2023
1 parent e5681bf commit 220c30d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
### Bug Fixes

* **drive**: filtering of failed and exceeding limit transactions ([#1639](https://github.com/dashpay/platform/issues/1639))

* runtime error: index out of range 28 with length 28

### Reverts

Expand Down
2 changes: 1 addition & 1 deletion packages/dashmate/configs/defaults/getBaseConfigFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export default function getBaseConfigFactory(homeDir) {
tenderdash: {
mode: 'full',
docker: {
image: 'dashpay/tenderdash:0.14.0-dev.1',
image: 'dashpay/tenderdash:fix-ordered-map',
},
p2p: {
host: '0.0.0.0',
Expand Down
8 changes: 8 additions & 0 deletions packages/dashmate/configs/getConfigFileMigrationsFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,14 @@ export default function getConfigFileMigrationsFactory(homeDir, defaultConfigs)

return configFile;
},
'0.25.19': (configFile) => {
Object.entries(configFile.configs)
.forEach(([, options]) => {
options.platform.drive.tenderdash.docker.image = base.get('platform.drive.tenderdash.docker.image');
});

return configFile;
},
};
}

Expand Down

0 comments on commit 220c30d

Please sign in to comment.