removed old comments and commented out code

This commit is contained in:
mx
2023-01-23 11:09:01 +01:00
parent bbc6689a32
commit dda00a0f16
2 changed files with 1 additions and 3 deletions
@@ -38,7 +38,7 @@ pub fn execute(
match msg {
Announce { client_address, standard_whitelist, owner } => exec::announce(_deps, _info, client_address, standard_whitelist, owner ),
Delete { client_address } => exec::delete(_deps, _info, client_address), // TODO fix in line with the comment
Delete { client_address } => exec::delete(_deps, _info, client_address),
UpdateScore { client_address, new_score } => exec::update_score(_deps, _info, client_address, new_score)
}
}
@@ -16,7 +16,5 @@ pub struct Config {
pub admin: Addr
}
// pub const ADMINS: Item<Vec<Addr>> = Item::new("admins");
pub const CONFIG: Item<Config> = Item::new("config");
// pub const SERVICES: Item<Vec<Service>> = Item::new("services");
pub const SERVICES: Map<String, Service> = Map::new("services");