Skip to content

Commit 26f9341

Browse files
committed
cleanup
Signed-off-by: instamenta <[email protected]>
1 parent 5a62289 commit 26f9341

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

src/commands/network.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ export class NetworkCommand extends BaseCommand {
141141
releaseTag?: string;
142142
persistentVolumeClaims?: string;
143143
valuesFile?: string;
144-
genesisNetworkJson?: string;
145144
haproxyIpsParsed?: Record<NodeAlias, IP>;
146145
envoyIpsParsed?: Record<NodeAlias, IP>;
146+
genesisNetworkJson?: string;
147147
} = {},
148148
) {
149149
let valuesArg = config.chartDirectory

src/commands/node/tasks.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,7 @@ export class NodeCommandTasks {
457457
*/
458458
_generateGossipKeys(generateMultiple: boolean) {
459459
const self = this;
460+
460461
return new Task(
461462
'Generate gossip keys',
462463
(ctx: any, task: ListrTaskWrapper<any, any, any>) => {

src/core/helpers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import {type NodeAlias, type NodeAliases} from '../types/aliases.js';
2828
import {type CommandFlag} from '../types/flag_types.js';
2929
import {type SoloLogger} from './logging.js';
3030
import {type Duration} from './time/duration.js';
31+
import {NodeAddConfigClass} from '../commands/node/configs.js';
3132

3233
export function sleep(duration: Duration) {
3334
return new Promise<void>(resolve => {

src/types/aliases.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,6 @@ export type TaskFunction = (
3939

4040
export type ConfigBuilder = (argv, ctx, task) => Promise<any>;
4141

42+
export type Nullable<T> = T | null;
43+
4244
export type IP = string;

0 commit comments

Comments
 (0)