Commit 4fb28e0d authored by Felix Lange's avatar Felix Lange

all: goimports -w

parent bdae4fd5
...@@ -20,7 +20,6 @@ import ( ...@@ -20,7 +20,6 @@ import (
"bytes" "bytes"
"encoding/json" "encoding/json"
"fmt" "fmt"
"github.com/robertkrimen/otto"
"strings" "strings"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
...@@ -28,6 +27,7 @@ import ( ...@@ -28,6 +27,7 @@ import (
"github.com/ethereum/go-ethereum/common/registrar" "github.com/ethereum/go-ethereum/common/registrar"
"github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/xeth" "github.com/ethereum/go-ethereum/xeth"
"github.com/robertkrimen/otto"
) )
type abi2method map[[8]byte]*method type abi2method map[[8]byte]*method
......
...@@ -34,10 +34,12 @@ import ( ...@@ -34,10 +34,12 @@ import (
"bytes" "bytes"
"errors" "errors"
"fmt" "fmt"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/crypto"
"math/big" "math/big"
"unsafe" "unsafe"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/params"
) )
type JitVm struct { type JitVm struct {
......
...@@ -18,8 +18,9 @@ package randentropy ...@@ -18,8 +18,9 @@ package randentropy
import ( import (
crand "crypto/rand" crand "crypto/rand"
"github.com/ethereum/go-ethereum/crypto/sha3"
"io" "io"
"github.com/ethereum/go-ethereum/crypto/sha3"
) )
var Reader io.Reader = &randEntropy{} var Reader io.Reader = &randEntropy{}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment