We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f6da30 commit ecd69f2Copy full SHA for ecd69f2
crates/revive-strategy/src/executor/runner.rs
@@ -164,6 +164,6 @@ impl ExecutorStrategyExt for ReviveExecutorStrategyRunner {
164
let ctx = get_context_ref(ctx);
165
let mut state = ctx.externalties.0.lock().unwrap();
166
state.depth = 0;
167
- while let Ok(_) = state.externalities.ext().storage_rollback_transaction() {}
+ while state.externalities.ext().storage_rollback_transaction().is_ok() {}
168
}
169
0 commit comments