You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I want to define a global constant of type Address, but I just don't know how to do it, and I couldn't figure out a solution from the docs. I tried to do the following:
use ethereum_types::Address;use std::str::FromStr;pubconstMY_ADDRESS:Address = Address::from_slice(0x0298F4332e3857631385b39766325058a93e249f);
But the compilation failed with this error:
error: integer literal is too large
I also tried to use the from_str function:
use ethereum_types::Address;use std::str::FromStr;pubconstMY_ADDRESS:Address = Address::from_str("0x0298F4332e3857631385b39766325058a93e249f").unwrap();
But this didn't work either:
error: cannot call non-const fn <H160 as FromStr>::from_str in constants
note: calls in constants are limited to constant functions, tuple structs and tuple variants
cannot call non-const fn <H160 as FromStr>::from_str in constants
calls in constants are limited to constant functions, tuple structs and tuple variants
Is it even possible to do this, or must Addresses always be defined as non-constants?
I saw in your tests that you are hard-coding some addresses like this:
But I wonder if there is a less verbose way to do it, which doesn't involve passing an array of bytes to the from function? Ideally I would pass the address in full, as shown in the code snippets above.
Side note: it might be worth it to enable discussions in this repo, so that users like me who don't want to report bugs or make feature requests can avoid spamming the issues channel with questions.
The text was updated successfully, but these errors were encountered:
As you've noticed, Address is a type alias for H160, which is a type constructed by the fixed-hash crate. This crate was written in the pre-const times, where the amount of computation one could do in a const context was limited.
We still can't make H160::from and H160::from_str const, because the respective traits from std lib are not const.
We can however, add a separate const method to do a const construction.
Hello! I want to define a global constant of type
Address
, but I just don't know how to do it, and I couldn't figure out a solution from the docs. I tried to do the following:But the compilation failed with this error:
I also tried to use the
from_str
function:But this didn't work either:
Is it even possible to do this, or must
Address
es always be defined as non-constants?I saw in your tests that you are hard-coding some addresses like this:
But I wonder if there is a less verbose way to do it, which doesn't involve passing an array of bytes to the
from
function? Ideally I would pass the address in full, as shown in the code snippets above.Side note: it might be worth it to enable discussions in this repo, so that users like me who don't want to report bugs or make feature requests can avoid spamming the issues channel with questions.
The text was updated successfully, but these errors were encountered: