Skip to content

Commit

Permalink
fix: add rich accounts to logs (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 authored Sep 15, 2023
1 parent 6f48a95 commit ec25ac0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/local/modules/dockerized-node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ export default class SetupModule extends Module {
async onStartCompleted() {
Logger.info(`${this.name} ready:
- L1 RPC URL: http://localhost:8545
- L2 RPC URL: http://localhost:3050`);
- L2 RPC URL: http://localhost:3050
- Rich accounts: ${path.join(this.folder, "rich-wallets.json")}`);
if (this.justInstalled) {
Logger.warn(" - First start may take a while until zkSync node is actually running, please be patient...");
}
Expand Down
1 change: 1 addition & 0 deletions src/commands/local/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const handler = async () => {
try {
if (!configExists()) {
await setupConfig();
Logger.info("");
}

const config = getConfig();
Expand Down

0 comments on commit ec25ac0

Please sign in to comment.