From 726047cb478515dae8968c46cc531d94c5f23670 Mon Sep 17 00:00:00 2001 From: Constantin Dogaru Date: Fri, 26 Nov 2021 10:16:34 +0200 Subject: [PATCH] add another tbd --- sputnikdao2/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/sputnikdao2/src/lib.rs b/sputnikdao2/src/lib.rs index 81e8fdb7c..61bd79147 100644 --- a/sputnikdao2/src/lib.rs +++ b/sputnikdao2/src/lib.rs @@ -156,6 +156,7 @@ impl Contract { 1_000_000_000 * 60 * 60 * 24 * config.max_days_of_inactivity.0; let mut active = false; + // TBD: is this condition what we want? if last_proposal.submission_time.0 + allowed_inactivity_time > env::block_timestamp() { active = true; // it means this DAO is still active }