Merge pull request #4074 from mempool/fix_rust_gbt_typo

Fix rust gbt docker  typo
This commit is contained in:
softsimon
2023-08-01 14:14:56 +09:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -181,12 +181,12 @@ describe('Mempool Backend Config', () => {
// We have a few cases where we can't follow the pattern
if (root === 'MEMPOOL' && key === 'HTTP_PORT') {
console.log('skipping check for MEMPOOL_HTTP_PORT');
return;
continue;
}
switch (typeof value) {
case 'object': {
if (Array.isArray(value)) {
return;
continue;
} else {
parseJson(value, key);
}