Skip to content

Commit

Permalink
start reorg detector
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaubennassar committed Jul 26, 2024
1 parent f6bf0ad commit 26ce165
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ else
endif
GOBASE := $(shell pwd)
GOBIN := $(GOBASE)/dist
GOENVVARS := GOBIN=$(GOBIN) CGO_ENABLED=1 GOOS=linux GOARCH=$(ARCH)
GOENVVARS := GOBIN=$(GOBIN) CGO_ENABLED=0 GOOS=linux GOARCH=$(ARCH)
GOBINARY := cdk
GOCMD := $(GOBASE)/cmd

Expand Down
1 change: 1 addition & 0 deletions cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ func start(cliCtx *cli.Context) error {
log.Fatal(err)
}
reorgDetector := newReorgDetectorL1(cliCtx.Context, *c, l1Client)
go reorgDetector.Start(cliCtx.Context)
syncer := newL1InfoTreeSyncer(cliCtx.Context, *c, l1Client, reorgDetector)
go syncer.Start(cliCtx.Context)
aggOracle := createAggoracle(*c, l1Client, syncer)
Expand Down

0 comments on commit 26ce165

Please sign in to comment.