Skip to content

Commit 739b7cc

Browse files
committed
Cleanup imports
1 parent d5aed82 commit 739b7cc

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

cmd/mist/flags.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,13 @@ import (
2727
"log"
2828
"os"
2929
"path"
30-
"path/filepath"
3130
"runtime"
3231

3332
"github.com/ethereum/go-ethereum/crypto"
3433
"github.com/ethereum/go-ethereum/ethutil"
3534
"github.com/ethereum/go-ethereum/logger"
3635
"github.com/ethereum/go-ethereum/p2p/nat"
3736
"github.com/ethereum/go-ethereum/vm"
38-
"github.com/kardianos/osext"
3937
)
4038

4139
var (

cmd/utils/cmd.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,7 @@ import (
2525
"fmt"
2626
"os"
2727
"os/signal"
28-
"path"
29-
"path/filepath"
3028
"regexp"
31-
"runtime"
3229

3330
"github.com/ethereum/go-ethereum/core/types"
3431
"github.com/ethereum/go-ethereum/crypto"

ethutil/common.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@ package ethutil
22

33
import (
44
"fmt"
5-
"github.com/kardianos/osext"
65
"math/big"
6+
"os"
77
"os/user"
88
"path"
9+
"path/filepath"
910
"runtime"
1011
"time"
12+
13+
"github.com/kardianos/osext"
1114
)
1215

1316
func DefaultAssetPath() string {

0 commit comments

Comments
 (0)