fix: make transaction errors in stages fatal (#2062)

This commit is contained in:
Bjerg
2023-03-31 16:24:50 +02:00
committed by GitHub
parent 3e17b8a512
commit ff6eb5a499

View File

@ -72,7 +72,8 @@ impl StageError {
StageError::StageProgress(_) |
StageError::ExecutionError { .. } |
StageError::ChannelClosed |
StageError::Fatal(_)
StageError::Fatal(_) |
StageError::Transaction(_)
)
}
}