com.swirlds.merkledb.files.hash_record.proto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swirlds-merkledb Show documentation
Show all versions of swirlds-merkledb Show documentation
Swirlds is a software platform designed to build fully-distributed applications that harness the power of the cloud without servers. Now you can develop applications with fairness in decision making, speed, trust and reliability, at a fraction of the cost of traditional server-based platforms.
syntax = "proto3";
package merkledb;
option java_package = "com.swirlds.merkledb.files";
option java_multiple_files = true;
message HashRecord {
// Virtual node path
optional uint64 path = 1;
// Hash. Always DigestType.SHA_384 for now
bytes hash = 2;
}