Skip to content

Commit

Permalink
remove std imports
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejka committed Jun 14, 2024
1 parent fb4424f commit 9296609
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ use super::{BlockId, BroadcastedDeclareTxn, BroadcastedDeployAccountTxn, Broadca
use crate::custom_serde::NumAsHex;
use alloc::string::String;
use alloc::vec::Vec;
use core::marker::PhantomData;
use serde::ser::SerializeMap;
use serde::{Deserialize, Serialize};
use std::marker::PhantomData;

pub type Address<F> = F;

Expand Down
2 changes: 1 addition & 1 deletion crates/starknet-types-rpc/src/v0_7_1/starknet_write_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
use super::{
BroadcastedDeclareTxn, BroadcastedDeployAccountTxn, BroadcastedInvokeTxn, Felt, TxnHash,
};
use core::marker::PhantomData;
use serde::ser::SerializeMap;
use serde::{Deserialize, Serialize};
use std::marker::PhantomData;

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ClassAndTxnHash<F> {
Expand Down

0 comments on commit 9296609

Please sign in to comment.