Skip to content

Commit

Permalink
add another log
Browse files Browse the repository at this point in the history
  • Loading branch information
sduchesneau committed Jul 11, 2024
1 parent ccea9af commit 1800927
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cmd/fireeth/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package main
import (
"fmt"
"strings"
"time"

"github.com/spf13/cobra"
"github.com/spf13/pflag"
Expand All @@ -28,6 +29,13 @@ func init() {
}

func main() {
go func() {
i := 0
for {
time.Sleep(time.Second)
fmt.Printf("test log %d", i)
}
}()
fhCmd.Main(Chain())
}

Expand Down

0 comments on commit 1800927

Please sign in to comment.