Skip to content

Commit

Permalink
chore: cleanup, fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
cylewitruk committed Mar 7, 2024
1 parent 62b4983 commit fa78a9b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contrib/tools/relay-server/src/http.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::io::{Error, Read};

use stacks_common::types::{StacksHashMap as HashMap, StacksHashSet as HashSet};
use stacks_common::types::StacksHashMap as HashMap;

use crate::to_io_result::ToIoResult;

Expand Down
2 changes: 1 addition & 1 deletion contrib/tools/relay-server/src/state.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use stacks_common::types::{StacksHashMap as HashMap, StacksHashSet as HashSet};
use stacks_common::types::StacksHashMap as HashMap;

#[derive(Default)]
pub struct State {
Expand Down
2 changes: 1 addition & 1 deletion contrib/tools/relay-server/src/url.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use stacks_common::types::{StacksHashMap as HashMap, StacksHashSet as HashSet};
use stacks_common::types::StacksHashMap as HashMap;

pub trait QueryEx {
fn url_query(&self) -> HashMap<&str, &str>;
Expand Down
2 changes: 1 addition & 1 deletion stacks-signer/src/client/stackerdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use slog::{slog_debug, slog_warn};
use stacks_common::codec::{read_next, StacksMessageCodec};
use stacks_common::consts::SIGNER_SLOTS_PER_USER;
use stacks_common::types::chainstate::StacksPrivateKey;
use stacks_common::types::{StacksHashMap as HashMap, StacksHashSet as HashSet};
use stacks_common::types::StacksHashMap as HashMap;
use stacks_common::{debug, warn};

use super::ClientError;
Expand Down

0 comments on commit fa78a9b

Please sign in to comment.