mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-22 02:07:58 +00:00
fix: wrap long log line to satisfy ktlint max-line-length
This commit is contained in:
+6
-1
@@ -77,7 +77,12 @@ class RewardCalculatorFactory(
|
||||
// For parachains with a parent relay chain, staking exposures live on the relay chain
|
||||
val exposureChainId = chain.parentId ?: chainId
|
||||
|
||||
Log.d("PEZ_STAKING", "RewardCalculatorFactory.create() chainId=${chainId.take(12)} exposureChainId=${exposureChainId.take(12)} stakingType=${stakingOption.additional.stakingType}")
|
||||
Log.d(
|
||||
"PEZ_STAKING",
|
||||
"RewardCalculatorFactory.create() chainId=${chainId.take(12)}" +
|
||||
" exposureChainId=${exposureChainId.take(12)}" +
|
||||
" stakingType=${stakingOption.additional.stakingType}"
|
||||
)
|
||||
|
||||
val activeEra = stakingRepository.getActiveEraIndex(exposureChainId)
|
||||
Log.d("PEZ_STAKING", "ActiveEra: $activeEra for ${exposureChainId.take(12)}")
|
||||
|
||||
Reference in New Issue
Block a user