Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
andymck committed Jun 7, 2024
1 parent 3427ddf commit 5986102
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mobile_verifier/src/reward_shares.rs
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ impl CoveragePoints {
epoch: &'_ Range<DateTime<Utc>>,
poc_rewards_per_share: Decimal,
) -> Option<impl Iterator<Item = (u64, proto::MobileRewardShare)> + '_> {
tracing::info!("poc_rewards_per_share {:?}", poc_rewards_per_share);
tracing::info!(%poc_rewards_per_share);
let start_period = epoch.start.encode_timestamp();
let end_period = epoch.end.encode_timestamp();
if poc_rewards_per_share > Decimal::ZERO {
Expand All @@ -590,7 +590,7 @@ impl CoveragePoints {
hotspot_points.radio_points.into_iter(),
)
})
.filter(|(poc_reward, _mobile_reward)| *poc_reward > 0),
.filter(|(poc_reward, _mobile_reward)| *poc_reward > 0)
)
} else {
None
Expand Down

0 comments on commit 5986102

Please sign in to comment.