Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Testnet Injector
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EcoMobiCoin
Testnet Injector
Commits
19228797
Commit
19228797
authored
1 year ago
by
Anthony GRAIGNIC
Browse files
Options
Downloads
Patches
Plain Diff
Updatre base quantity in generated bxs
parent
9b8ddcae
No related branches found
Branches containing commit
No related tags found
1 merge request
!14
Update mobility quantification
Pipeline
#6362
passed
1 year ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/utils/mobility_data.rs
+7
-8
7 additions, 8 deletions
src/utils/mobility_data.rs
with
7 additions
and
8 deletions
src/utils/mobility_data.rs
+
7
−
8
View file @
19228797
...
...
@@ -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
(
1
29000000000000
0000000_u128
),
result
);
assert_eq!
(
U256
::
from
(
1
548
0000000_u128
),
result
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment