Updated on 2026-08-14

This commit is contained in:
Tangem 2024-09-26 10:28:45 +03:00
parent 8f5db97d2f
commit 801a02506f
19 changed files with 255 additions and 338 deletions

View file

@ -8,6 +8,6 @@ internal class DefaultStakeKitAuthProvider(
) : StakeKitAuthProvider {
override fun getApiKey(): String {
return configManager.config.stakeKitApiKey ?: error("No StakeKit api key provided")
return configManager.getConfigSync().stakeKitApiKey ?: error("No StakeKit api key provided")
}
}