Skip to content

Commit

Permalink
fix: generate account options starting in attached mode (#462)
Browse files Browse the repository at this point in the history
This PR fixes starting the generate-accounts option and debug option in attached mode.

Signed-off-by: georgi-l95 <glazarov95@gmail.com>
  • Loading branch information
georgi-l95 authored Dec 6, 2023
1 parent f60b82d commit 3f56e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/CLIService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export class CLIService implements IService{
const accounts: number = argv.accounts as number;
const async: any = argv.async as boolean;
const balance: number = argv.balance as number;
const detached: boolean = argv.detached as boolean;
const detached: boolean = this.isStartup ? argv.detached as boolean : true;
const host: string = argv.host as string;
const network: NetworkType = this.resolveNetwork(argv.network as string);
const limits: boolean = argv.limits as boolean;
Expand Down

0 comments on commit 3f56e1a

Please sign in to comment.