Browse Source

remove unnecessary "crypto" import alias (#2940)

pull/2945/head
Dev Ojha 6 years ago
committed by Anton Kaliaev
parent
commit
4039276085
9 changed files with 9 additions and 9 deletions
  1. +1
    -1
      consensus/replay_test.go
  2. +1
    -1
      p2p/key.go
  3. +1
    -1
      p2p/peer_test.go
  4. +1
    -1
      p2p/pex/addrbook.go
  5. +1
    -1
      p2p/pex/pex_reactor_test.go
  6. +1
    -1
      p2p/test_util.go
  7. +1
    -1
      rpc/core/pipe.go
  8. +1
    -1
      rpc/core/types/responses.go
  9. +1
    -1
      tools/tm-monitor/monitor/node.go

+ 1
- 1
consensus/replay_test.go View File

@ -17,7 +17,7 @@ import (
"github.com/tendermint/tendermint/abci/example/kvstore"
abci "github.com/tendermint/tendermint/abci/types"
crypto "github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto"
auto "github.com/tendermint/tendermint/libs/autofile"
dbm "github.com/tendermint/tendermint/libs/db"
"github.com/tendermint/tendermint/version"


+ 1
- 1
p2p/key.go View File

@ -6,7 +6,7 @@ import (
"fmt"
"io/ioutil"
crypto "github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto/ed25519"
cmn "github.com/tendermint/tendermint/libs/common"
)


+ 1
- 1
p2p/peer_test.go View File

@ -10,7 +10,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
crypto "github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto/ed25519"
cmn "github.com/tendermint/tendermint/libs/common"
"github.com/tendermint/tendermint/libs/log"


+ 1
- 1
p2p/pex/addrbook.go View File

@ -13,7 +13,7 @@ import (
"sync"
"time"
crypto "github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto"
cmn "github.com/tendermint/tendermint/libs/common"
"github.com/tendermint/tendermint/p2p"
)


+ 1
- 1
p2p/pex/pex_reactor_test.go View File

@ -12,7 +12,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
crypto "github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto/ed25519"
cmn "github.com/tendermint/tendermint/libs/common"
"github.com/tendermint/tendermint/libs/log"


+ 1
- 1
p2p/test_util.go View File

@ -5,7 +5,7 @@ import (
"net"
"time"
crypto "github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto/ed25519"
cmn "github.com/tendermint/tendermint/libs/common"
"github.com/tendermint/tendermint/libs/log"


+ 1
- 1
rpc/core/pipe.go View File

@ -2,7 +2,7 @@ package core
import (
"github.com/tendermint/tendermint/consensus"
crypto "github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto"
dbm "github.com/tendermint/tendermint/libs/db"
"github.com/tendermint/tendermint/libs/log"
mempl "github.com/tendermint/tendermint/mempool"


+ 1
- 1
rpc/core/types/responses.go View File

@ -5,7 +5,7 @@ import (
"time"
abci "github.com/tendermint/tendermint/abci/types"
crypto "github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto"
cmn "github.com/tendermint/tendermint/libs/common"
"github.com/tendermint/tendermint/p2p"


+ 1
- 1
tools/tm-monitor/monitor/node.go View File

@ -7,7 +7,7 @@ import (
"github.com/pkg/errors"
crypto "github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/crypto"
"github.com/tendermint/tendermint/libs/events"
"github.com/tendermint/tendermint/libs/log"
ctypes "github.com/tendermint/tendermint/rpc/core/types"


Loading…
Cancel
Save