Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
clippy
  • Loading branch information
kostekIV committed Nov 17, 2022
commit 0d53c566dc4d174a2f3fbc038497ef15b521504d
1 change: 1 addition & 0 deletions aleph-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use subxt::{

use crate::api::runtime_types::aleph_runtime::Call;
// generated by running `subxt codegen --derive Clone Debug Eq PartialEq | rustfmt --edition=2018 > src/aleph_zero.rs`
#[allow(clippy::all)]
mod aleph_zero;
mod connections;
pub mod contract;
Expand Down
2 changes: 2 additions & 0 deletions aleph-client/src/pallets/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ pub trait ContractsUserApi {
storage_limit: Option<Compact<u128>>,
status: TxStatus,
) -> anyhow::Result<H256>;
#[allow(clippy::too_many_arguments)]
async fn instantiate(
&self,
code_hash: H256,
Expand All @@ -42,6 +43,7 @@ pub trait ContractsUserApi {
salt: Vec<u8>,
status: TxStatus,
) -> anyhow::Result<H256>;
#[allow(clippy::too_many_arguments)]
async fn instantiate_with_code(
&self,
code: Vec<u8>,
Expand Down