Map finality timeout to Dropped instead of Invalid (#1953)

This commit is contained in:
James Wilson
2025-03-11 14:49:52 +00:00
committed by GitHub
parent b6b9ac65c7
commit 16c50846c1
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -382,7 +382,7 @@ impl<T: Config + Send + Sync + 'static> Backend<T> for LegacyBackend<T> {
}
// These 5 mean that the stream will very likely end:
RpcTransactionStatus::FinalityTimeout(_) => {
Some(TransactionStatus::Invalid {
Some(TransactionStatus::Dropped {
message: "Finality timeout".into(),
})
}