Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
TropicalDog17 committed Oct 10, 2023
1 parent c555872 commit fb81375
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ use crate::error::ContractError;
use crate::msg::{ExecuteMsg, InstantiateMsg, QueryMsg, SocialResponse};
use crate::state::{Platform, ProfileId, SocialInfo, ADDRESS_TO_SOCIAL, OWNER, SOCIAL_TO_ADDRESS};
use cosmwasm_std::Addr;
use cw_storage_plus::{Item, Map};
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

Expand All @@ -26,7 +25,7 @@ pub fn instantiate(
_deps: DepsMut,
_env: Env,
info: MessageInfo,
msg: InstantiateMsg,
_msg: InstantiateMsg,
) -> Result<Response, ContractError> {
set_contract_version(_deps.storage, CONTRACT_NAME, CONTRACT_VERSION)?;
OWNER.save(_deps.storage, &info.sender)?;
Expand Down
3 changes: 1 addition & 2 deletions src/state.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use cosmwasm_schema::cw_serde;
use cosmwasm_std::{Addr, Uint128};
use cosmwasm_std::Addr;
use cw_storage_plus::{Item, Map};

pub type SocialInfo = (Platform, ProfileId);
Expand Down

0 comments on commit fb81375

Please sign in to comment.