From 2706f5184f6c3ead7d2485e66cebf41b7a1367ca Mon Sep 17 00:00:00 2001 From: 0xfourzerofour Date: Thu, 25 Jan 2024 12:53:30 -0500 Subject: [PATCH] feat(compliance): update comment --- crates/pool/src/mempool/pool.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/pool/src/mempool/pool.rs b/crates/pool/src/mempool/pool.rs index 8d6e08442..8b645818a 100644 --- a/crates/pool/src/mempool/pool.rs +++ b/crates/pool/src/mempool/pool.rs @@ -243,7 +243,7 @@ impl PoolInner { } if sender.gt(&0) && storage_address.ne(&uo.sender) { - // deny if the sender is also an entity in another user operation + // Reject UO if the sender is also an entity in another UO in the mempool for entity in uo.entities() { if storage_address.eq(&entity.address) { return Err(MempoolError::AssociatedStorageIsAlternateSender);