fix: WaitTx timeout no longer overwrites a rendered success screen (closes #155)
All checks were successful
check / check (push) Successful in 30s

This commit was merged in pull request #201.
This commit is contained in:
2026-08-12 10:58:36 +02:00
parent 23712b53cb
commit afe6ddaea0
6 changed files with 658 additions and 20 deletions

View File

@@ -165,6 +165,12 @@ function restoreView() {
fallbackView();
}
break;
case "wait-tx":
// Resumes the receipt poll from the persisted broadcast time.
if (!txStatus.restoreWait()) {
fallbackView();
}
break;
case "success-tx":
if (state.viewData && state.viewData.hash) {
txStatus.renderSuccess();