Fix bpf build, need to fully reference u128::MAX (#946)

This commit is contained in:
Jon Cinque 2020-12-14 18:06:38 +01:00 committed by GitHub
parent 8233d35fda
commit f8ba091a36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -380,7 +380,7 @@ impl PreciseNumber {
/// provides an epsilon of 11 digits
fn maximum_sqrt_base() -> Self {
Self {
value: U256::from(u128::MAX),
value: U256::from(std::u128::MAX),
}
}