Skip to content

Commit 4fb28e0

Browse files
committed
all: goimports -w
1 parent bdae4fd commit 4fb28e0

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

common/natspec/natspec.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ import (
2020
"bytes"
2121
"encoding/json"
2222
"fmt"
23-
"github.com/robertkrimen/otto"
2423
"strings"
2524

2625
"github.com/ethereum/go-ethereum/common"
2726
"github.com/ethereum/go-ethereum/common/docserver"
2827
"github.com/ethereum/go-ethereum/common/registrar"
2928
"github.com/ethereum/go-ethereum/crypto"
3029
"github.com/ethereum/go-ethereum/xeth"
30+
"github.com/robertkrimen/otto"
3131
)
3232

3333
type abi2method map[[8]byte]*method

core/vm/vm_jit.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@ import (
3434
"bytes"
3535
"errors"
3636
"fmt"
37-
"github.com/ethereum/go-ethereum/core/state"
38-
"github.com/ethereum/go-ethereum/crypto"
3937
"math/big"
4038
"unsafe"
39+
40+
"github.com/ethereum/go-ethereum/core/state"
41+
"github.com/ethereum/go-ethereum/crypto"
42+
"github.com/ethereum/go-ethereum/params"
4143
)
4244

4345
type JitVm struct {

crypto/randentropy/rand_entropy.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ package randentropy
1818

1919
import (
2020
crand "crypto/rand"
21-
"github.com/ethereum/go-ethereum/crypto/sha3"
2221
"io"
22+
23+
"github.com/ethereum/go-ethereum/crypto/sha3"
2324
)
2425

2526
var Reader io.Reader = &randEntropy{}

0 commit comments

Comments
 (0)