com.wavesplatform.common.merkle.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lang Show documentation
Show all versions of lang Show documentation
The RIDE smart contract language compiler
The newest version!
package com.wavesplatform.common
package object merkle {
type LeafData = Array[Byte]
type Message = Array[Byte]
type Digest = Array[Byte]
type Level = Seq[Digest]
}