removed old comments and commented out code
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user