We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2de37f2 commit 4a04127Copy full SHA for 4a04127
cmd/geth/chaincmd.go
@@ -278,7 +278,8 @@ func importChain(ctx *cli.Context) error {
278
utils.SetupMetrics(ctx)
279
// Start system runtime metrics collection
280
go metrics.CollectProcessMetrics(3 * time.Second)
281
- stack, _ := makeFullNode(ctx)
+
282
+ stack, _ := makeConfigNode(ctx)
283
defer stack.Close()
284
285
chain, db := utils.MakeChain(ctx, stack, false)
@@ -372,7 +373,8 @@ func exportChain(ctx *cli.Context) error {
372
373
if len(ctx.Args()) < 1 {
374
utils.Fatalf("This command requires an argument.")
375
}
376
377
378
379
380
chain, _ := utils.MakeChain(ctx, stack, true)
0 commit comments