dashboard: gofmt

This commit is contained in:
Felix Lange 2019-11-12 16:56:31 +01:00
parent 9bc4793401
commit 5d32960888
2 changed files with 3 additions and 2 deletions

View file

@ -27,13 +27,13 @@ package dashboard
import ( import (
"fmt" "fmt"
"github.com/ethereum/go-ethereum/common"
"io" "io"
"net" "net"
"net/http" "net/http"
"sync" "sync"
"sync/atomic" "sync/atomic"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/eth" "github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/event" "github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/les" "github.com/ethereum/go-ethereum/les"
@ -46,7 +46,7 @@ import (
) )
const ( const (
sampleLimit = 200 // Maximum number of data samples sampleLimit = 200 // Maximum number of data samples
dataCollectorCount = 4 dataCollectorCount = 4
) )

View file

@ -18,6 +18,7 @@ package dashboard
import ( import (
"encoding/json" "encoding/json"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
) )