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 (
"fmt"
"github.com/ethereum/go-ethereum/common"
"io"
"net"
"net/http"
"sync"
"sync/atomic"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/les"
@ -46,7 +46,7 @@ import (
)
const (
sampleLimit = 200 // Maximum number of data samples
sampleLimit = 200 // Maximum number of data samples
dataCollectorCount = 4
)

View file

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