object MerkleTree extends Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MerkleTree
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed trait BlindingCommand extends Product with Serializable

    Command indicating whether and how to blind a Merkle tree.

  2. type VersionedMerkleTree[A] = MerkleTree[A] with HasProtocolVersionedWrapper[_]

Value Members

  1. def fromProtoOptionV0[NodeType](protoNode: Option[BlindableNode], f: (ByteString) => ParsingResult[MerkleTree[NodeType]]): ParsingResult[MerkleTree[NodeType]]

    Deserialize a blindable protobuf node to a blinded or an unblinded tree node depending on the contents of protoNode

  2. def fromProtoOptionV1[NodeType](protoNode: Option[BlindableNode], f: (ByteString) => ParsingResult[MerkleTree[NodeType]]): ParsingResult[MerkleTree[NodeType]]
  3. def toBlindableNodeV0(node: MerkleTree[HasProtocolVersionedWrapper[_]]): BlindableNode

    Map a Merkle tree node to its protobuf node

  4. def toBlindableNodeV1(node: MerkleTree[HasProtocolVersionedWrapper[_]]): BlindableNode
  5. def tryUnwrap[A <: MerkleTree[A]]: Lens[MerkleTree[A], A]
  6. case object BlindSubtree extends BlindingCommand with Product with Serializable
  7. case object RevealIfNeedBe extends BlindingCommand with Product with Serializable

    Reveal the node if at least one descendant is revealed as well

  8. case object RevealSubtree extends BlindingCommand with Product with Serializable