Skip to content

Commit

Permalink
fix: make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
bdeneux committed Mar 21, 2023
1 parent f6eb8c8 commit 241e6ec
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions contracts/cw-storage/src/contract.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use crate::error::BucketError;
use crate::ContractError::NotImplemented;
#[cfg(not(feature = "library"))]
use cosmwasm_std::entry_point;
use cosmwasm_std::{to_binary, Binary, Deps, DepsMut, Env, MessageInfo, Response, StdResult};
Expand Down Expand Up @@ -46,18 +45,14 @@ pub fn execute(
ExecuteMsg::PinObject { id } => execute::pin_object(deps, info, id),
ExecuteMsg::UnpinObject { id } => execute::unpin_object(deps, info, id),
ExecuteMsg::ForgetObject { id } => execute::forget_object(deps, info, id),
_ => Err(NotImplemented {}),
}
}

pub mod execute {
use super::*;
use crate::state::Limits;
use crate::ContractError::Pinned;
use cosmwasm_std::Order::Ascending;
use cosmwasm_std::StdError::NotFound;
use cosmwasm_std::{Order, StdError, Uint128};
use cw_storage_plus::Bound;
use std::any::type_name;

pub fn store_object(
Expand Down

0 comments on commit 241e6ec

Please sign in to comment.