Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
rach-id committed Sep 24, 2024
1 parent 0813aca commit 8677963
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pb/proof.proto
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
syntax="proto3";
syntax = "proto3";

package proof.pb;

option go_package = "github.com/celestiaorg/nmt/pb";

message Proof {
// Start index of the leaves that match the queried namespace.ID.
int64 start = 1;
int64 start = 1;
// End index (non-inclusive) of the leaves that match the queried
// namespace.ID.
int64 end = 2;
int64 end = 2;
// Nodes hold the tree nodes necessary for the Merkle range proof.
repeated bytes nodes = 3;
// leaf_hash contains the namespace.ID if NMT does not have it and
Expand All @@ -18,5 +18,5 @@ message Proof {
bytes leaf_hash = 4;
// The is_max_namespace_ignored flag influences the calculation of the
// namespace ID range for intermediate nodes in the tree.
bool is_max_namespace_ignored=5;
}
bool is_max_namespace_ignored = 5;
}

0 comments on commit 8677963

Please sign in to comment.