-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #51 from input-output-hk/shared-components
Use ScorexLogging from the Scorex-util repository
- Loading branch information
Showing
23 changed files
with
50 additions
and
287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/main/scala/scorex/crypto/authds/avltree/batch/ToStringHelper.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package scorex.crypto.authds.avltree.batch | ||
|
||
import scorex.utils.{ScorexEncoding, ScryptoLogging} | ||
import scorex.utils.ScorexEncoding | ||
|
||
trait ToStringHelper extends ScryptoLogging with ScorexEncoding { | ||
trait ToStringHelper extends ScorexEncoding { | ||
//Needed for debug (toString) only | ||
protected def arrayToString(a: Array[Byte]): String = encoder.encode(a).take(8) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package scorex.crypto | ||
|
||
package object encode { | ||
|
||
@deprecated("Use scorex.util.encode.BytesEncoder instead.", "scorex-util 0.1.1") | ||
type BytesEncoder = scorex.util.encode.BytesEncoder | ||
|
||
@deprecated("Use scorex.util.encode.Base16 instead.", "scorex-util 0.1.1") | ||
val Base16 = scorex.util.encode.Base16 | ||
@deprecated("Use scorex.util.encode.Base58 instead.", "scorex-util 0.1.1") | ||
val Base58 = scorex.util.encode.Base58 | ||
@deprecated("Use scorex.util.encode.Base64 instead.", "scorex-util 0.1.1") | ||
val Base64 = scorex.util.encode.Base64 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package scorex | ||
|
||
package object utils { | ||
|
||
@deprecated("Use scorex.util.ScorexLogging instead.", "scorex-util 0.1.0") | ||
type ScryptoLogging = scorex.util.ScorexLogging | ||
|
||
@deprecated("Use scorex.util.ScorexEncoding instead.", "scorex-util 0.1.1") | ||
type ScorexEncoding = scorex.util.ScorexEncoding | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 0 additions & 5 deletions
5
src/test/scala/scorex/crypto/encode/Base16Specification.scala
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.