adjust payout report to show actual days

This commit is contained in:
aecsocket
2026-08-14 12:08:38 +00:00
parent ba1b7ce3c1
commit a0c2537505
5 changed files with 109 additions and 80 deletions
+2 -2
View File
@@ -169,11 +169,11 @@ impl RedisPool {
keys: &[K],
expiry: i64,
closure: F,
) -> Result<std::collections::HashMap<K, T>, E>
) -> Result<std::collections::HashMap<K, T>>
where
F: FnOnce(Vec<K>) -> Fut,
Fut: Future<Output = Result<DashMap<K, T>, E>>,
E: From<Error>,
E: std::error::Error + Send + Sync + 'static,
T: Serialize + DeserializeOwned,
K: Display
+ Hash