-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
Summary
The current send flow can report success before the transaction has actually been broadcast.
BDKClient.send is exposed as a synchronous throwing API, but the live implementation immediately starts an internal Task and returns without waiting for the async broadcast to finish. Because of that, the UI continues as if the send succeeded even though the real network operation is still in progress.
Why This Matters
This creates a user-facing correctness bug:
- The app can show a success state before the transaction is actually broadcast.
- Broadcast failures may be surfaced too late, or not in the right screen context.
- The user can be navigated away from the send screen even if the transaction was rejected.
- A wallet app should never optimistically confirm a send before the backend confirms success.
Current Behavior
BuildTransactionViewModel.send()callsbdkClient.send(...).- The live
BDKClient.sendimplementation starts a backgroundTaskand returns immediately. BuildTransactionViewModelthen postsTransactionSentright away.BuildTransactionViewwaits one second and assumes success if no error has appeared yet.
This means success is based on timing, not on the actual result of the broadcast.
Expected Behavior
The send flow should only report success after signing and broadcasting have completed successfully.
Proposed Fix
- Change the send API from synchronous to
async throwsacross the stack. - Make
BDKClient.sendawaitBDKService.send(...)directly instead of wrapping it in a detachedTask. - Update
BuildTransactionViewModel.send()to beasync. - In
BuildTransactionView, await the send call and only show the success UI after it returns successfully. - Remove the one-second timer-based success heuristic.
- Post wallet update notifications only after the async send has actually succeeded.
Suggested Acceptance Criteria
- A failed broadcast does not show the success checkmark.
- The user remains on the send screen when send fails.
- A successful broadcast shows success only after the async operation completes.
- No send-related state depends on fixed delays or race-prone background fire-and-forget tasks.
References
BDKSwiftExampleWallet/Service/BDK Service/BDKService.swiftBDKSwiftExampleWallet/View Model/Send/BuildTransactionViewModel.swiftBDKSwiftExampleWallet/View/Send/BuildTransactionView.swift
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels