Skip to content

Commit 982bc39

Browse files
committed
ETCM-167: Flattened the crypto package to avoid shadowing.
1 parent e456fd1 commit 982bc39

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/main/scala/io/iohk/ethereum/network/discovery/crypto/Secp256k1SigAlg.scala renamed to src/main/scala/io/iohk/ethereum/network/discovery/Secp256k1SigAlg.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.iohk.ethereum.network.discovery.crypto
1+
package io.iohk.ethereum.network.discovery
22

33
import akka.util.ByteString
44
import io.iohk.ethereum.crypto

src/test/scala/io/iohk/ethereum/network/discovery/crypto/Secp256k1SigAlgSpec.scala renamed to src/test/scala/io/iohk/ethereum/network/discovery/Secp256k1SigAlgSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package io.iohk.ethereum.network.discovery.crypto
1+
package io.iohk.ethereum.network.discovery
22

33
import org.scalatest.flatspec.AnyFlatSpec
44
import org.scalatest.matchers.should.Matchers

src/test/scala/io/iohk/ethereum/network/discovery/codecs/EIP8CodecsSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import org.scalatest.matchers.should.Matchers
44
import org.scalatest.flatspec.AnyFlatSpec
55
import io.iohk.scalanet.discovery.ethereum.v4.{Packet, Payload}
66
import io.iohk.scalanet.discovery.crypto.{SigAlg, PrivateKey}
7-
import io.iohk.ethereum.network.discovery.crypto.Secp256k1SigAlg
7+
import io.iohk.ethereum.network.discovery.Secp256k1SigAlg
88
import scodec.bits.BitVector
99
import scodec.Codec
1010
import java.net.InetAddress

src/test/scala/io/iohk/ethereum/network/discovery/codecs/ENRCodecsSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import org.scalatest.flatspec.AnyFlatSpec
55
import io.iohk.scalanet.discovery.ethereum.{Node, EthereumNodeRecord}
66
import io.iohk.scalanet.discovery.crypto.{SigAlg, PrivateKey}
77
import io.iohk.scalanet.discovery.hash.{Hash, Keccak256}
8-
import io.iohk.ethereum.network.discovery.crypto.Secp256k1SigAlg
8+
import io.iohk.ethereum.network.discovery.Secp256k1SigAlg
99
import io.iohk.ethereum.rlp
1010
import io.iohk.ethereum.rlp.{RLPList, RLPEncoder}
1111
import io.iohk.ethereum.rlp.RLPImplicits._

0 commit comments

Comments
 (0)