Skip to content

Commit

Permalink
review fixes
Browse files Browse the repository at this point in the history
fix: MerklLogEntry -> MerkleLogEntry
fix: consistency use 'commit' rather than 'committed eveywhere

AB#8859
  • Loading branch information
Robin Bryce committed Jan 15, 2024
1 parent eba37e0 commit 685ac55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion datatrails-common-api/assets/v2/assets/eventresponse.proto
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ message EventResponse {
// verkle_log. We use oneof to avoid repeating the scattering of randomly
// re-purposed fields we currently have for simple hash vs khipu.
oneof proof_details {
MerklLogEntry merklelog_entry = 19 [ (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
MerkleLogEntry merklelog_entry = 19 [ (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
description:
"verifiable merkle mmr log entry details"
max_length: 1024
Expand Down
4 changes: 2 additions & 2 deletions datatrails-common-api/assets/v2/assets/merklelogentry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ message MerkleLogCommitMessage {


// The details stored in the SaaS db for a proof mech MERKLE_LOG commitment
message MerklLogEntry {
message MerkleLogEntry {

// The tenant log version and epoch when the log entry was created.
uint32 log_version = 1;
uint32 log_epoch = 2;

// Event trust level commited fields
MerkleLogCommit committed = 3;
MerkleLogCommit commit = 3;

// TODO: Event trust level confirmed fields

Expand Down

0 comments on commit 685ac55

Please sign in to comment.