Skip to content

Commit 3c0ba80

Browse files
author
Ivo Georgiev
committed
follower: fix clippy lint
1 parent dc05f96 commit 3c0ba80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

validator_worker/src/follower.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ async fn on_new_state<'a, A: Adapter + 'static>(
8484
}
8585

8686
let health = get_health(&iface.channel, balances, &proposed_balances);
87-
if health < u64::from(iface.config.health_unsignable_promilles).into() {
87+
if health < u64::from(iface.config.health_unsignable_promilles) {
8888
return Ok(on_error(&iface, &new_state, InvalidNewState::Health).await);
8989
}
9090

0 commit comments

Comments
 (0)