diff --git a/README.md b/README.md index 7ef53cb..df88960 100644 --- a/README.md +++ b/README.md @@ -184,10 +184,6 @@ cd ../.. npm run setup:coinswap ``` -**Build takes a long time** - -The first build compiles Rust code which can take 2-3 minutes. This is normal. Subsequent builds will be faster as most dependencies are cached. - ## Contributing Contributions are welcome! To contribute: diff --git a/src/components/swap/SwapStateManager.js b/src/components/swap/SwapStateManager.js index 09b291a..2ed417e 100644 --- a/src/components/swap/SwapStateManager.js +++ b/src/components/swap/SwapStateManager.js @@ -42,7 +42,7 @@ export const SwapStateManager = { const isActive = activeSwap.status === 'in_progress' || activeSwap.status === 'configured'; - // Check if configured swap is stale (older than 5 minutes) + // Check if configured swap is stale if (activeSwap.status === 'configured') { const age = Date.now() - activeSwap.createdAt; if (age > 15 * 60 * 1000) {