forked from cerc-io/plugeth
update imports order per goimports
This commit is contained in:
parent
3588c4a9fe
commit
ddca18638f
@ -1,8 +1,9 @@
|
|||||||
package rle
|
package rle
|
||||||
|
|
||||||
import (
|
import (
|
||||||
checker "gopkg.in/check.v1"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
checker "gopkg.in/check.v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test(t *testing.T) { checker.TestingT(t) }
|
func Test(t *testing.T) { checker.TestingT(t) }
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
package ethutil
|
package ethutil
|
||||||
|
|
||||||
import (
|
import (
|
||||||
checker "gopkg.in/check.v1"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
checker "gopkg.in/check.v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test(t *testing.T) { checker.TestingT(t) }
|
func Test(t *testing.T) { checker.TestingT(t) }
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
package ethutil
|
package ethutil
|
||||||
|
|
||||||
import (
|
import (
|
||||||
checker "gopkg.in/check.v1"
|
|
||||||
"math/big"
|
"math/big"
|
||||||
|
|
||||||
|
checker "gopkg.in/check.v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ValueSuite struct{}
|
type ValueSuite struct{}
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
package state
|
package state
|
||||||
|
|
||||||
import (
|
import (
|
||||||
checker "gopkg.in/check.v1"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
checker "gopkg.in/check.v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test(t *testing.T) { checker.TestingT(t) }
|
func Test(t *testing.T) { checker.TestingT(t) }
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
package trie
|
package trie
|
||||||
|
|
||||||
import (
|
import (
|
||||||
checker "gopkg.in/check.v1"
|
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
checker "gopkg.in/check.v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
func Test(t *testing.T) { checker.TestingT(t) }
|
func Test(t *testing.T) { checker.TestingT(t) }
|
||||||
|
@ -4,12 +4,13 @@ import (
|
|||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
checker "gopkg.in/check.v1"
|
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
checker "gopkg.in/check.v1"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/ethutil"
|
"github.com/ethereum/go-ethereum/ethutil"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user