Skip to content

Commit

Permalink
Update relay/kusama/src/lib.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Oliver Tale-Yazdi <[email protected]>
  • Loading branch information
liamaharon and ggwpez authored Jun 6, 2024
1 parent 9f070f1 commit 276adc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relay/kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2044,7 +2044,7 @@ pub mod migrations {
.retain(|proxy| proxy.proxy_type != PrevProxyType::IdentityJudgement);
let proxies_len_after = proxies.len() as u64;

let deposit = if proxies_len_before - proxies_len_after > 0 {
let deposit = if proxies_len_before > proxies_len_after {
log::info!(
"Removing {} IdentityJudgement proxies for {:?}",
proxies_len_before - proxies_len_after,
Expand Down

0 comments on commit 276adc5

Please sign in to comment.