From 9ad62ef2633646b842a5df4860f580f560c07275 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Mon, 13 May 2024 13:22:58 -0400 Subject: [PATCH] Reduces default zap amounts due to the change of bitcoin price --- app/src/main/java/com/vitorpamplona/amethyst/model/Account.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/vitorpamplona/amethyst/model/Account.kt b/app/src/main/java/com/vitorpamplona/amethyst/model/Account.kt index d7107e8a1..8f29730a3 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/model/Account.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/model/Account.kt @@ -148,7 +148,7 @@ val DefaultReactions = "\uD83D\uDE31", ) -val DefaultZapAmounts = listOf(500L, 1000L, 5000L) +val DefaultZapAmounts = listOf(100L, 500L, 1000L) fun getLanguagesSpokenByUser(): Set { val languageList = ConfigurationCompat.getLocales(Resources.getSystem().getConfiguration())