All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wavesenterprise.utils.Constants.scala Maven / Gradle / Ivy

There is a newer version: 1.16.0
Show newest version
package com.wavesenterprise.utils

object Constants {
  private val BytesMaxValue  = 256
  private val Base58MaxValue = 58

  private val BytesLog = math.log(BytesMaxValue)
  private val BaseLog  = math.log(Base58MaxValue)

  def base58Length(byteArrayLength: Int): Int = math.ceil(BytesLog / BaseLog * byteArrayLength).toInt
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy