From 69d11f7a4a720b429dcaf82192d96b5cc5e85a81 Mon Sep 17 00:00:00 2001 From: nothing0012 Date: Sat, 27 Jan 2024 15:13:01 +0800 Subject: [PATCH] Add comment --- programs/mmm/src/instructions/admin/set_shared_escrow.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/programs/mmm/src/instructions/admin/set_shared_escrow.rs b/programs/mmm/src/instructions/admin/set_shared_escrow.rs index b5bce9a..b13d7bd 100644 --- a/programs/mmm/src/instructions/admin/set_shared_escrow.rs +++ b/programs/mmm/src/instructions/admin/set_shared_escrow.rs @@ -34,7 +34,8 @@ pub fn handler(ctx: Context, args: SetSharedEscrowArgs) -> Resu return Err(MMMErrorCode::InvalidAccountState.into()); } - // not support for reinvest + // not support for reinvest yet, and we will start with collection offers + // for shared escrow first. if pool.reinvest_fulfill_buy || pool.reinvest_fulfill_sell { return Err(MMMErrorCode::InvalidAccountState.into()); }