diff --git a/contracts/voting/dao-voting-native-staked/src/msg.rs b/contracts/voting/dao-voting-native-staked/src/msg.rs index 7964f520a..b5b0c340c 100644 --- a/contracts/voting/dao-voting-native-staked/src/msg.rs +++ b/contracts/voting/dao-voting-native-staked/src/msg.rs @@ -7,7 +7,6 @@ use dao_voting::threshold::{ActiveThreshold, ActiveThresholdResponse}; #[cw_serde] pub struct InstantiateMsg { - // TODO replace with cw-ownable // Owner can update all configs including changing the owner. This will generally be a DAO. pub owner: Option, // Manager can update all configs except changing the owner. This will generally be an operations multisig for a DAO. diff --git a/contracts/voting/dao-voting-token-factory-staked/src/msg.rs b/contracts/voting/dao-voting-token-factory-staked/src/msg.rs index 3ce48cb50..5d78d22e9 100644 --- a/contracts/voting/dao-voting-token-factory-staked/src/msg.rs +++ b/contracts/voting/dao-voting-token-factory-staked/src/msg.rs @@ -31,7 +31,6 @@ pub enum TokenInfo { #[cw_serde] pub struct InstantiateMsg { - // TODO replace with cw-ownable // Owner can update all configs including changing the owner. This will generally be a DAO. pub owner: Option, // Manager can update all configs except changing the owner. This will generally be an operations multisig for a DAO. diff --git a/contracts/voting/dao-voting-token-factory-staked/src/state.rs b/contracts/voting/dao-voting-token-factory-staked/src/state.rs index 24951dd47..e5a06fed2 100644 --- a/contracts/voting/dao-voting-token-factory-staked/src/state.rs +++ b/contracts/voting/dao-voting-token-factory-staked/src/state.rs @@ -10,7 +10,6 @@ use crate::msg::NewTokenInfo; #[cw_serde] pub struct Config { - // TODO use cw-ownable pub owner: Option, pub manager: Option, pub unstaking_duration: Option,