From c0349af287fc43a6e9c44883a1f9028f5b738bea Mon Sep 17 00:00:00 2001 From: nothing0012 Date: Sun, 11 Feb 2024 07:11:03 +0800 Subject: [PATCH] Add comments --- programs/mmm/src/state.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/mmm/src/state.rs b/programs/mmm/src/state.rs index ba4c17f..569fdd2 100644 --- a/programs/mmm/src/state.rs +++ b/programs/mmm/src/state.rs @@ -79,8 +79,8 @@ pub struct Pool { pub allowlists: [Allowlist; ALLOWLIST_MAX_LEN], pub buyside_payment_amount: u64, - pub shared_escrow_account: Pubkey, - pub shared_escrow_count: u64, + pub shared_escrow_account: Pubkey, // this points to the shared escrow account PDA (usually M2) + pub shared_escrow_count: u64, // this means that how many times (count) the shared escrow account can be fulfilled, and it can be mutable } impl Pool {