Skip to content

Commit

Permalink
test: swallow error for soft rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
rymnc committed Sep 23, 2024
1 parent e5f5d92 commit b2aa337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fuel-core/src/combined_database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ impl CombinedDatabase {
S: ShutdownListener,
{
if let Some(on_chain_height) = self.on_chain().latest_height_from_metadata()? {
self.rollback_to(on_chain_height, shutdown_listener)?;
let _ = self.rollback_to(on_chain_height, shutdown_listener);
};

Ok(())
Expand Down

0 comments on commit b2aa337

Please sign in to comment.