index
:
coreth
Avalanche C-Chain service code.
log msg
author
committer
range
dev
devnet-no-plugin
ecstasy-fixes
ecstasy-transfer
geth-tavum
master
multi-coin
about
summary
refs
log
tree
commit
diff
path:
root
/
examples
/
fc
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'examples/fc')
-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)
}