Skip to content

Commit

Permalink
rm redundant lint filters
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed Mar 29, 2024
1 parent ef23ac1 commit 3538f26
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
5 changes: 0 additions & 5 deletions ibc-testkit/src/integration/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ where
)
}

#[allow(clippy::too_many_arguments)]
pub fn create_channel_on_b(
&mut self,
conn_id_on_b: ConnectionId,
Expand Down Expand Up @@ -191,14 +190,12 @@ where
)
}

#[allow(clippy::too_many_arguments)]
pub fn close_channel_on_a(
&mut self,
chan_id_on_a: ChannelId,
port_id_on_a: PortId,
chan_id_on_b: ChannelId,
port_id_on_b: PortId,

signer: Signer,
) {
let conn_id_on_a = self
Expand Down Expand Up @@ -246,14 +243,12 @@ where
)
}

#[allow(clippy::too_many_arguments)]
pub fn close_channel_on_b(
&mut self,
chan_id_on_b: ChannelId,
port_id_on_b: PortId,
chan_id_on_a: ChannelId,
port_id_on_a: PortId,

signer: Signer,
) {
let conn_id_on_b = self
Expand Down
3 changes: 0 additions & 3 deletions ibc-testkit/src/integration/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,6 @@ where
open_try_channel_event.chan_id_on_b().clone()
}

#[allow(clippy::too_many_arguments)]
pub fn channel_open_ack_on_a(
ctx_a: &mut MockContext<A>,
ctx_b: &MockContext<B>,
Expand Down Expand Up @@ -814,7 +813,6 @@ where
write_ack_event.acknowledgement().clone()
}

#[allow(clippy::too_many_arguments)]
pub fn packet_ack_on_a(
ctx_a: &mut MockContext<A>,
ctx_b: &MockContext<B>,
Expand Down Expand Up @@ -932,7 +930,6 @@ where
};
}

Check warning on line 931 in ibc-testkit/src/integration/utils.rs

View check run for this annotation

Codecov / codecov/patch

ibc-testkit/src/integration/utils.rs#L931

Added line #L931 was not covered by tests

#[allow(clippy::too_many_arguments)]
pub fn send_packet_on_a(
ctx_a: &mut MockContext<A>,
ctx_b: &mut MockContext<B>,
Expand Down

0 comments on commit 3538f26

Please sign in to comment.