8000 clean up unused imports by AustinWoetzel · Pull Request #355 · securesecrets/shade · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

clean up unused imports #355

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
use crate::{
c_std::{Addr, Binary, Decimal, Uint128},
query_auth::{
helpers::{authenticate_permit, authenticate_vk, PermitAuthentication},
QueryPermit,
},
c_std::{Addr, Binary, Uint128},
query_auth::QueryPermit,
utils::{
asset::{Contract, RawContract},
generic_response::ResponseStatus,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pub mod staking_derivatives {
utils::asset::Contract,
};

use crate::utils::{ExecuteCallback, InstantiateCallback, Query};
use crate::utils::{ExecuteCallback, Query};

#[cw_serde]
pub enum ExecuteMsg {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use crate::{
c_std::{Addr, Binary, Uint128},
contract_interfaces::snip20::helpers::Snip20Asset,
utils::{asset::Contract, generic_response::ResponseStatus},
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use crate::utils::{
Query,
};
use cosmwasm_schema::cw_serde;
use cosmwasm_std::{Addr, Binary, Uint128};
use cosmwasm_std::{Binary, Uint128};

#[cw_serde]
pub struct RegisteredToken {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ where
mod test {

use super::*;
use crate::c_std::{MemoryStorage, Timestamp, Uint128};
use crate::c_std::{MemoryStorage, Timestamp};

fn test_push(now: String) {
let now = parse_utc_datetime(&"1995-11-13T00:00:00.00Z".to_string()).unwrap();
Expand Down
0