This commit is contained in:
Petar Radovic 2026-04-29 14:38:20 +02:00
parent 798b89839c
commit fede4977b7
2 changed files with 2 additions and 2 deletions

View File

@ -213,7 +213,7 @@ impl SimpleWritableCell for AccNumTxCell {
}
/// Opaque bytes for the zone-sdk indexer cursor `Option<(MsgId, Slot)>`.
/// The caller serializes via serde_json (neither type derives borsh).
/// The caller serializes via `serde_json` (neither type derives borsh).
#[derive(BorshDeserialize)]
pub struct ZoneSdkIndexerCursorCellOwned(pub Vec<u8>);

View File

@ -96,7 +96,7 @@ impl SimpleWritableCell for LatestBlockMetaCellRef<'_> {
}
/// Opaque bytes for the zone-sdk sequencer checkpoint. The caller is
/// responsible for the actual encoding (we use serde_json since
/// responsible for the actual encoding (we use `serde_json` since
/// `SequencerCheckpoint` only derives serde, not borsh).
#[derive(BorshDeserialize)]
pub struct ZoneSdkCheckpointCellOwned(pub Vec<u8>);