Commit f717663c authored by Matt Solomon's avatar Matt Solomon Committed by GitHub

chore: log message on init success (#12396)

parent a54c79bb
...@@ -55,11 +55,17 @@ func InitCLI() func(ctx *cli.Context) error { ...@@ -55,11 +55,17 @@ func InitCLI() func(ctx *cli.Context) error {
l2ChainIDs[i] = id l2ChainIDs[i] = id
} }
return Init(InitConfig{ err := Init(InitConfig{
L1ChainID: l1ChainID, L1ChainID: l1ChainID,
Outdir: outdir, Outdir: outdir,
L2ChainIDs: l2ChainIDs, L2ChainIDs: l2ChainIDs,
}) })
if err != nil {
return err
}
fmt.Printf("Successfully initialized op-deployer intent in directory: %s\n", outdir)
return nil
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment