Skip to content

Commit 8445a9d

Browse files
committed
inspect error
1 parent 9bf223d commit 8445a9d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

stackslib/src/cli.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,9 @@ fn replay_naka_staging_block(db_path: &str, index_block_hash_hex: &str, conf: &C
863863
None,
864864
true,
865865
)
866-
.unwrap();
866+
.map_err(|err| {
867+
eprintln!("Compilation failed with error: {:?}", err);
868+
});
867869

868870
let (block, block_size) = chainstate
869871
.nakamoto_blocks_db()

0 commit comments

Comments
 (0)