Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lostman committed Sep 15, 2023
1 parent 146798c commit 0baa5a4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/fuel-indexer-lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ impl std::fmt::Display for WasmIndexerError {
write!(f, "Failed to create MemoryView for indexer")
}
Self::KillSwitch => {
write!(f, "Indexer kill switch has been triggered. Indexer will halt.")
write!(
f,
"Indexer kill switch has been triggered. Indexer will halt."
)
}
Self::DatabaseError => {
write!(f, "Database operation failed.")
Expand Down

0 comments on commit 0baa5a4

Please sign in to comment.