Skip to content

Commit 1296b2e

Browse files
committed
Removal equality check from comparison
1 parent fe41b82 commit 1296b2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/src/lib/client/eth_bridge/bridge_pool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ async fn construct_bridge_pool_proof(
162162
let warnings: Vec<_> = in_progress
163163
.into_iter()
164164
.filter_map(|(ref transfer, voting_power)| {
165-
if voting_power >= FractionalVotingPower::ONE_THIRD {
165+
if voting_power > FractionalVotingPower::ONE_THIRD {
166166
let hash = PendingTransfer::from(transfer).keccak256();
167167
transfers.contains(&hash).then_some(hash)
168168
} else {

0 commit comments

Comments
 (0)