Skip to content

Commit dde7f4f

Browse files
committed
chore(flipcash): reduce cash link confirmation delay
Signed-off-by: Brandon McAnsh <git@bmcreations.dev>
1 parent 438487e commit dde7f4f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

apps/flipcash/shared/session/src/main/kotlin/com/flipcash/app/session/internal/RealSessionController.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ import kotlinx.coroutines.launch
6666
import kotlinx.coroutines.suspendCancellableCoroutine
6767
import javax.inject.Inject
6868
import kotlin.coroutines.resume
69+
import kotlin.time.Duration.Companion.milliseconds
6970
import kotlin.time.Duration.Companion.seconds
7071

7172
class RealSessionController @Inject constructor(
@@ -611,4 +612,4 @@ class RealSessionController @Inject constructor(
611612
}
612613

613614
private val AIRDROP_INITIAL_DELAY = 1.seconds
614-
private val CASH_LINK_CONFIRMATION_DELAY = 1.seconds
615+
private val CASH_LINK_CONFIRMATION_DELAY = 500.milliseconds

0 commit comments

Comments
 (0)