Skip to content

Commit

Permalink
doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky committed Nov 12, 2024
1 parent 34c0caf commit 0a194e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/chia-datalayer/src/merkle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ impl std::fmt::Display for TreeIndex {
type Parent = Option<TreeIndex>;
type Hash = [u8; 32];
type KvIdBytes = [u8; size_of::<i64>()];
// key and value ids are provided from outside of this code and are implemented as
// the row id from sqlite which is a signed 8 byte integer. the actually key and
// value data bytes will not be handled within this code, only outside.
/// Key and value ids are provided from outside of this code and are implemented as
/// the row id from sqlite which is a signed 8 byte integer. The actual key and
/// value data bytes will not be handled within this code, only outside.
#[cfg_attr(feature = "py-bindings", derive(FromPyObject), pyo3(transparent))]
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct KvId(i64);
Expand Down

0 comments on commit 0a194e8

Please sign in to comment.