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
Currently, the integration tests are failing at compilation state, because of 2 reasons:
The operator builder function now receives an additional parameter, deposit_tokens, that is not passed at the register_operator_with_el test function. I solved this passing a harcoded value U256::from(70000), but it is not optimal.
In the import use eigen_utils::get_provider;, get provider does not belong to eigen_utils module, but to eigen_common.
Solving those errors, both tests are failing with this log:
Currently, the integration tests are failing at compilation state, because of 2 reasons:
U256::from(70000)
, but it is not optimal.use eigen_utils::get_provider;
, get provider does not belong to eigen_utils module, but to eigen_common.Solving those errors, both tests are failing with this log:
The text was updated successfully, but these errors were encountered: