(rootPath: string, n: number, target = 0)
| 107 | |
| 108 | // Generate multiple accounts with specified rootPath |
| 109 | generateSpecAccounts(rootPath: string, n: number, target = 0) { |
| 110 | for (let i = 0; i < n; i++) { |
| 111 | this.createAccount(rootPath, i, target); |
| 112 | } |
| 113 | return Object.keys(this.accountCollection); |
| 114 | } |
| 115 | |
| 116 | // Generate multiple accounts |
| 117 | generateAccounts(n: number, target = 0) { |
nothing calls this directly
no test coverage detected