Skip to content

Commit

Permalink
fix: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
alenmestrov committed Nov 26, 2024
1 parent 5b758d7 commit a6bedf4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ use serde::Serialize;
use starknet::core::codec::{Decode, Encode, FeltWriter};
use starknet_crypto::Felt;

use crate::client::env::config::types::starknet::{CallData, StarknetPrivileges, ContextId as StarknetContextId, ContextIdentity as StarknetContextIdentity};
use crate::client::env::config::types::starknet::{
CallData, ContextId as StarknetContextId, ContextIdentity as StarknetContextIdentity,
StarknetPrivileges,
};
use crate::client::env::Method;
use crate::client::protocol::near::Near;
use crate::client::protocol::starknet::Starknet;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl Method<Starknet> for ProposalRequest {

let mut call_data = CallData::default();
starknet_id.encode(&mut call_data)?;

Ok(call_data.0)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl Method<Starknet> for ProposalApproversRequest {

let mut call_data = CallData::default();
starknet_id.encode(&mut call_data)?;

Ok(call_data.0)
}

Expand Down

0 comments on commit a6bedf4

Please sign in to comment.