From bb1176af73643a75aa2c8e5f08ca862a48c2a20b Mon Sep 17 00:00:00 2001 From: Marvin Jones Date: Thu, 13 Aug 2026 17:08:46 -0400 Subject: [PATCH] docs(lee): trim PROGRAM_STORAGE_OWNER and public_state doc comments Co-Authored-By: Claude Sonnet 5 --- lee/state_machine/src/state/mod.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lee/state_machine/src/state/mod.rs b/lee/state_machine/src/state/mod.rs index 32b085ef0..814315efa 100644 --- a/lee/state_machine/src/state/mod.rs +++ b/lee/state_machine/src/state/mod.rs @@ -112,10 +112,6 @@ impl BorshDeserialize for NullifierSet { #[derive(Clone, PartialEq, Eq, BorshSerialize, BorshDeserialize)] #[cfg_attr(test, derive(Debug))] pub struct V03State { - /// Deployed programs live here too, as `Account`s keyed by `AccountId::from(program_id)` - /// (see that impl's doc comment), with the elf held in `Account.data` and `program_owner` - /// set to the reserved `PROGRAM_STORAGE_OWNER` (see its doc comment for why that ownership - /// choice is load-bearing now that these accounts are reachable via ordinary dispatch). public_state: HashMap, private_state: (CommitmentSet, NullifierSet), }