Skip to content

Commit eb9abdb

Browse files
committed
chore: fix clippy
1 parent 58e6438 commit eb9abdb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

core/service/src/client/tests/threshold/custodian_backup_tests.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ async fn backup_after_crs(amount_custodians: usize, threshold: u32) {
225225
let cur_meta: CrsGenMetadata = read_versioned_at_request_and_epoch_id(
226226
&cur_priv_store,
227227
&crs_req,
228-
&*DEFAULT_EPOCH_ID,
228+
&DEFAULT_EPOCH_ID,
229229
&PrivDataType::CrsInfo.to_string(),
230230
)
231231
.await
@@ -263,7 +263,7 @@ async fn backup_after_crs(amount_custodians: usize, threshold: u32) {
263263
let recovered_meta: CrsGenMetadata = read_versioned_at_request_and_epoch_id(
264264
&cur_priv_store,
265265
&crs_req,
266-
&*DEFAULT_EPOCH_ID,
266+
&DEFAULT_EPOCH_ID,
267267
&PrivDataType::CrsInfo.to_string(),
268268
)
269269
.await
@@ -532,6 +532,7 @@ async fn shutdown_servers_and_client(
532532
}
533533

534534
#[cfg(feature = "insecure")]
535+
#[allow(clippy::type_complexity)]
535536
async fn run_full_custodian_recovery(
536537
kms_clients: &HashMap<u32, CoreServiceEndpointClient<Channel>>,
537538
mnemonics: Vec<String>,

0 commit comments

Comments
 (0)