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
What is the purpose of the constraint result.nonces_after.len() == 1 in simtree.process_simulation_task_result?
// we don't really need state here because nonces are cached but its smaller if we reuse pending state fn
fn process_simulation_task_result(
&mut self,
result: SimulatedResult,
state: &NonceCacheRef,
) -> Result<(), ProviderError> {
self.sims.insert(result.id, result.clone());
let mut orders_ready = Vec::new();
if result.nonces_after.len() == 1 {
...
The text was updated successfully, but these errors were encountered:
What is the purpose of the constraint result.nonces_after.len() == 1 in simtree.process_simulation_task_result?
The text was updated successfully, but these errors were encountered: