From 015576bfd431a3232e4ea382e3633868fe0fbc2d Mon Sep 17 00:00:00 2001 From: Jake Hartnell Date: Thu, 4 Jul 2024 20:17:06 -0400 Subject: [PATCH] Clean up, appease clippy gods --- contracts/gauges/README.md | 7 ------- contracts/gauges/gauge-adapter/src/multitest/suite.rs | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/contracts/gauges/README.md b/contracts/gauges/README.md index a46a084e8..68c610ec7 100644 --- a/contracts/gauges/README.md +++ b/contracts/gauges/README.md @@ -1,10 +1,3 @@ # Gauges Forked from [Wynd DAO repo](https://github.com/wynddao/wynddao), modified to support any type of DAO. - -## TODO -- [ ] More tests (consider refactoring with cw-orch) -- [ ] Make improvements to `GaugeAdapter` API -- [ ] Improve `GaugeAdapter` examples -- [ ] Does not handle small numbers elegantly (a problem with NFT DAOs, where people might stake 1 NFT) -- [ ] Better READMEs diff --git a/contracts/gauges/gauge-adapter/src/multitest/suite.rs b/contracts/gauges/gauge-adapter/src/multitest/suite.rs index 254868ffb..53ac2b14d 100644 --- a/contracts/gauges/gauge-adapter/src/multitest/suite.rs +++ b/contracts/gauges/gauge-adapter/src/multitest/suite.rs @@ -67,7 +67,7 @@ impl SuiteBuilder { } pub fn with_community_pool(mut self, community_pool: &str) -> Self { - self.community_pool = community_pool.to_owned(); + self.community_pool = community_pool.to_string(); self }