all: goimports -w

pull/1426/head
Felix Lange 9 years ago
parent bdae4fd573
commit 4fb28e0dab
  1. 2
      common/natspec/natspec.go
  2. 6
      core/vm/vm_jit.go
  3. 3
      crypto/randentropy/rand_entropy.go

@ -20,7 +20,6 @@ import (
"bytes"
"encoding/json"
"fmt"
"github.com/robertkrimen/otto"
"strings"
"github.com/ethereum/go-ethereum/common"
@ -28,6 +27,7 @@ import (
"github.com/ethereum/go-ethereum/common/registrar"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/xeth"
"github.com/robertkrimen/otto"
)
type abi2method map[[8]byte]*method

@ -34,10 +34,12 @@ import (
"bytes"
"errors"
"fmt"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/crypto"
"math/big"
"unsafe"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/params"
)
type JitVm struct {

@ -18,8 +18,9 @@ package randentropy
import (
crand "crypto/rand"
"github.com/ethereum/go-ethereum/crypto/sha3"
"io"
"github.com/ethereum/go-ethereum/crypto/sha3"
)
var Reader io.Reader = &randEntropy{}

Loading…
Cancel
Save