diff options
Diffstat (limited to 'examples/fc/main.go')
-rw-r--r-- | examples/fc/main.go | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/examples/fc/main.go b/examples/fc/main.go index d6b224c..f4bf65d 100644 --- a/examples/fc/main.go +++ b/examples/fc/main.go @@ -1,14 +1,16 @@ package main import ( - "os" - "github.com/ava-labs/coreth/cmd/geth" + "github.com/ava-labs/coreth/cmd/geth" + "os" ) func checkError(err error) { - if err != nil { panic(err) } + if err != nil { + panic(err) + } } func main() { - geth.App.Run(os.Args) + geth.App.Run(os.Args) } |