diff --git a/internal/debug/flags.go b/internal/debug/flags.go
index ed17f87c4593c89d8d20b68d31991d39cd5460b9..d7bbfae1ebb6696c7a94e667e7cc67df681baaf5 100644
--- a/internal/debug/flags.go
+++ b/internal/debug/flags.go
@@ -53,7 +53,7 @@ var (
 		Value: 6060,
 	}
 	pprofAddrFlag = cli.StringFlag{
-		Name: "pprofaddr",
+		Name:  "pprofaddr",
 		Usage: "pprof HTTP server listening interface",
 		Value: "127.0.0.1",
 	}
diff --git a/internal/ethapi/tracer.go b/internal/ethapi/tracer.go
index c6d4f814ec39a4275b571c8f31e15a8c71c7b921..5f69826a3b8525f36dae10d7905e64280d003107 100644
--- a/internal/ethapi/tracer.go
+++ b/internal/ethapi/tracer.go
@@ -167,17 +167,17 @@ func (dw *dbWrapper) toValue(vm *otto.Otto) otto.Value {
 // JavascriptTracer provides an implementation of Tracer that evaluates a
 // Javascript function for each VM execution step.
 type JavascriptTracer struct {
-	vm          *otto.Otto             // Javascript VM instance
-	traceobj    *otto.Object           // User-supplied object to call
-	log         map[string]interface{} // (Reusable) map for the `log` arg to `step`
-	logvalue    otto.Value             // JS view of `log`
-	memory      *memoryWrapper         // Wrapper around the VM memory
-	memvalue    otto.Value             // JS view of `memory`
-	stack       *stackWrapper          // Wrapper around the VM stack
-	stackvalue  otto.Value             // JS view of `stack`
-	db          *dbWrapper             // Wrapper around the VM environment
-	dbvalue     otto.Value             // JS view of `db`
-	err         error                  // Error, if one has occurred
+	vm         *otto.Otto             // Javascript VM instance
+	traceobj   *otto.Object           // User-supplied object to call
+	log        map[string]interface{} // (Reusable) map for the `log` arg to `step`
+	logvalue   otto.Value             // JS view of `log`
+	memory     *memoryWrapper         // Wrapper around the VM memory
+	memvalue   otto.Value             // JS view of `memory`
+	stack      *stackWrapper          // Wrapper around the VM stack
+	stackvalue otto.Value             // JS view of `stack`
+	db         *dbWrapper             // Wrapper around the VM environment
+	dbvalue    otto.Value             // JS view of `db`
+	err        error                  // Error, if one has occurred
 }
 
 // NewJavascriptTracer instantiates a new JavascriptTracer instance.
@@ -222,17 +222,17 @@ func NewJavascriptTracer(code string) (*JavascriptTracer, error) {
 	db := &dbWrapper{}
 
 	return &JavascriptTracer{
-		vm:          vm,
-		traceobj:    jstracer,
-		log:         log,
-		logvalue:    logvalue,
-		memory:      mem,
-		memvalue:    mem.toValue(vm),
-		stack:       stack,
-		stackvalue:  stack.toValue(vm),
-		db:          db,
-		dbvalue:     db.toValue(vm),
-		err:         nil,
+		vm:         vm,
+		traceobj:   jstracer,
+		log:        log,
+		logvalue:   logvalue,
+		memory:     mem,
+		memvalue:   mem.toValue(vm),
+		stack:      stack,
+		stackvalue: stack.toValue(vm),
+		db:         db,
+		dbvalue:    db.toValue(vm),
+		err:        nil,
 	}, nil
 }
 
diff --git a/rpc/http.go b/rpc/http.go
index c923580bfe75cfc3a092077a15dec5fa49493c6f..7d4fe5d474e6e847b4eae90381b8387454ed1965 100644
--- a/rpc/http.go
+++ b/rpc/http.go
@@ -170,7 +170,7 @@ func newCorsHandler(srv *Server, corsString string) http.Handler {
 	c := cors.New(cors.Options{
 		AllowedOrigins: allowedOrigins,
 		AllowedMethods: []string{"POST", "GET"},
-		MaxAge: 600,
+		MaxAge:         600,
 	})
 	return c.Handler(srv)
 }
diff --git a/swarm/storage/chunker_test.go b/swarm/storage/chunker_test.go
index 4f05cd1cc3b913916c1ac52776860404dd300509..40f870246fd4db2fc4eac162f1e75ed4795be657 100644
--- a/swarm/storage/chunker_test.go
+++ b/swarm/storage/chunker_test.go
@@ -28,7 +28,6 @@ import (
 	"time"
 )
 
-
 /*
 Tests TreeChunker by splitting and joining a random byte slice
 */