feat: add transaction retry mechanism with exponential backoff and ji…#303
Open
Richardkingz2019 wants to merge 3 commits into
Open
feat: add transaction retry mechanism with exponential backoff and ji…#303Richardkingz2019 wants to merge 3 commits into
Richardkingz2019 wants to merge 3 commits into
Conversation
Contract CI: fix working directory from ./wata-board-dapp/nepa_contract to ./contract, use cargo build instead of stellar-cli Frontend CI: create frontend-tests.yml workflow, upgrade vitest to 4.x for Vite 8 compat, fix test assertions to match actual hook/component APIs Test fixes: useRateLimit, useWalletBalance, analyticsService, App.test.tsx, multiProvider.test.tsx, wallet-bridge.ts import fix
64afa19 to
2936d65
Compare
App.tsx: remove duplicate JSX/imports from bad merge, keep brand-themed version wallet-bridge.ts: remove duplicated function bodies in isConnected/requestAccess/signTransaction multiProvider.test.tsx: fix 4 test failures - contract ID regex, selectProvider/refreshProviders state updates, integration test wrapper
Contributor
|
@Richardkingz2019 please resolve conflict |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…tter (fixes #294)
Description
Files to modify : backend/src/services/payment-service.ts , backend/src/services/multiProviderPaymentService.ts Acceptance Criteria :
Implement retry logic for failed transactions
Use exponential backoff with jitter
Track retry count in payment records
All tests pass Why Important : Improves system reliability
closes #294