Skip to content

Commit

Permalink
remove unused fromrow
Browse files Browse the repository at this point in the history
  • Loading branch information
andymck committed Jul 28, 2023
1 parent f6cd9cf commit d1e4479
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions mobile_verifier/src/speedtests_average.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ use helium_crypto::PublicKeyBinary;
use helium_proto::services::poc_mobile::{self as proto, SpeedtestAvgValidity};
use rust_decimal::Decimal;
use rust_decimal_macros::dec;
use sqlx::FromRow;

use std::collections::HashMap;

pub const SPEEDTEST_LAPSE: i64 = 48;
Expand Down Expand Up @@ -213,7 +211,7 @@ impl SpeedtestTier {
}
}

#[derive(Clone, Default, FromRow)]
#[derive(Clone, Default)]
pub struct SpeedtestAverages {
pub averages: HashMap<PublicKeyBinary, SpeedtestAverage>,
}
Expand Down

0 comments on commit d1e4479

Please sign in to comment.