mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-11 09:21:37 +00:00
build, node: fix go vet nits
This commit is contained in:
parent
6cb39dd3da
commit
5eccc122e8
2 changed files with 2 additions and 2 deletions
|
|
@ -185,7 +185,7 @@ func getFiles() []string {
|
||||||
files = append(files, line)
|
files = append(files, line)
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("error getting files:", err)
|
log.Fatal("error getting files:", err)
|
||||||
}
|
}
|
||||||
return files
|
return files
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ func (s *SampleService) APIs() []rpc.API { return nil }
|
||||||
func (s *SampleService) Start(*p2p.Server) error { fmt.Println("Service starting..."); return nil }
|
func (s *SampleService) Start(*p2p.Server) error { fmt.Println("Service starting..."); return nil }
|
||||||
func (s *SampleService) Stop() error { fmt.Println("Service stopping..."); return nil }
|
func (s *SampleService) Stop() error { fmt.Println("Service stopping..."); return nil }
|
||||||
|
|
||||||
func ExampleUsage() {
|
func ExampleService() {
|
||||||
// Create a network node to run protocols with the default values. The below list
|
// Create a network node to run protocols with the default values. The below list
|
||||||
// is only used to display each of the configuration options. All of these could
|
// is only used to display each of the configuration options. All of these could
|
||||||
// have been omitted if the default behavior is desired.
|
// have been omitted if the default behavior is desired.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue