Skip to content
Snippets Groups Projects
Commit 19228797 authored by Anthony GRAIGNIC's avatar Anthony GRAIGNIC
Browse files

Updatre base quantity in generated bxs

parent 9b8ddcae
No related branches found
No related tags found
1 merge request!14Update mobility quantification
Pipeline #6362 passed
......@@ -123,19 +123,18 @@ pub fn compute_stretched_relative_start_time(
/// Provide differents fake quantities depending on mobility e.g. BIKE that will be use for rewards calculation
/// Coefficients per km from https://nosgestesclimat.fr/actions/plus/transport/voiture-5km
pub fn quantify_mobility(service: String) -> U256 {
// let base_vdf_divider =
let base_vdf_divider =
let base_quantity = U256::from(1000000 * 12); // default network difficulty * mean vdf difficulty per sec
// U256::from(1_000_000_000_000_000_000_000_000_000_u128);
U256::from("0x0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff");
if service == "BIKE_SHARING" {
// 0.129/0.0001 = 1290
base_vdf_divider.saturating_mul(U256::from(1290_u128))
base_quantity.saturating_mul(U256::from(1290_u128))
} else if service == "BIKE_RENTAL" {
base_vdf_divider.saturating_mul(U256::from(1290_u128))
base_quantity.saturating_mul(U256::from(1290_u128))
} else if service == "PUBLIC_TRANSPORT" {
base_vdf_divider.saturating_mul(U256::from(1_u128))
base_quantity.saturating_mul(U256::from(1_u128))
} else {
base_vdf_divider
base_quantity
}
}
......@@ -289,6 +288,6 @@ mod tests {
// ACT
let result = quantify_mobility(String::from("BIKE_SHARING"));
// ASSERT
assert_eq!(U256::from(1290000000000000000000_u128), result);
assert_eq!(U256::from(15480000000_u128), result);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment