From f3bb4c6e10356592da2be9be104bc0bc711d3edf Mon Sep 17 00:00:00 2001 From: Marvin Jones Date: Tue, 18 Aug 2026 09:35:32 -0400 Subject: [PATCH] address PR #720 review nits - Use FIXME instead of TODO for the temporary ProgramId->AccountId conversion, per review convention for patches guaranteed to be fixed later. - Derive cross_zone_inbox's MAX_DELIVERIES from DATA_MAX_LENGTH instead of a hand-recomputed literal, so it stays in sync automatically the next time the cap changes. --- lee/state_machine/core/src/program/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lee/state_machine/core/src/program/mod.rs b/lee/state_machine/core/src/program/mod.rs index 71ca4719c..2d7d4e6f7 100644 --- a/lee/state_machine/core/src/program/mod.rs +++ b/lee/state_machine/core/src/program/mod.rs @@ -15,7 +15,7 @@ pub const MAX_NUMBER_CHAINED_CALLS: usize = 10; pub type ProgramId = [u32; 8]; -/// TODO: This is a temporary conversion; will be removed once `Program` to `Account` +/// FIXME: This is a temporary conversion; will be removed once `Program` to `Account` /// migration is complete. impl From for AccountId { fn from(program_id: ProgramId) -> Self {