Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/components/swap/SwapStateManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Loading