*: goimports
This commit is contained in:
parent
014be31a0a
commit
884779e501
6 changed files with 20 additions and 20 deletions
|
@ -6,4 +6,3 @@ type slice []uint32
|
||||||
func (p slice) Len() int { return len(p) }
|
func (p slice) Len() int { return len(p) }
|
||||||
func (p slice) Less(i, j int) bool { return p[i] < p[j] }
|
func (p slice) Less(i, j int) bool { return p[i] < p[j] }
|
||||||
func (p slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
|
func (p slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/pprof"
|
"net/http/pprof"
|
||||||
)
|
)
|
||||||
|
|
||||||
// PprofService https://golang.org/pkg/net/http/pprof/.
|
// PprofService https://golang.org/pkg/net/http/pprof/.
|
||||||
type PprofService Service
|
type PprofService Service
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,9 @@ package wrappers
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"github.com/CityOfZion/neo-go/pkg/core/state"
|
|
||||||
"sort"
|
"sort"
|
||||||
|
|
||||||
|
"github.com/CityOfZion/neo-go/pkg/core/state"
|
||||||
"github.com/CityOfZion/neo-go/pkg/crypto/keys"
|
"github.com/CityOfZion/neo-go/pkg/crypto/keys"
|
||||||
"github.com/CityOfZion/neo-go/pkg/util"
|
"github.com/CityOfZion/neo-go/pkg/util"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue