object MerkleTree extends Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MerkleTree
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- sealed trait BlindingCommand extends Product with Serializable
Command indicating whether and how to blind a Merkle tree.
- type VersionedMerkleTree[A] = MerkleTree[A] with HasProtocolVersionedWrapper[_]
Value Members
- 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
- def fromProtoOptionV1[NodeType](protoNode: Option[BlindableNode], f: (ByteString) => ParsingResult[MerkleTree[NodeType]]): ParsingResult[MerkleTree[NodeType]]
- def toBlindableNodeV0(node: MerkleTree[HasProtocolVersionedWrapper[_]]): BlindableNode
Map a Merkle tree node to its protobuf node
- def toBlindableNodeV1(node: MerkleTree[HasProtocolVersionedWrapper[_]]): BlindableNode
- def tryUnwrap[A <: MerkleTree[A]]: Lens[MerkleTree[A], A]
- case object BlindSubtree extends BlindingCommand with Product with Serializable
- case object RevealIfNeedBe extends BlindingCommand with Product with Serializable
Reveal the node if at least one descendant is revealed as well
- case object RevealSubtree extends BlindingCommand with Product with Serializable