mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-04-27 10:17:58 +00:00
fix: resolve ktlint errors in bridge feature module
This commit is contained in:
+2
-2
@@ -3,8 +3,8 @@ package io.novafoundation.nova.feature_bridge_api.domain.model
|
||||
import java.math.BigDecimal
|
||||
|
||||
enum class BridgeTransactionType {
|
||||
DEPOSIT, // Polkadot USDT -> Pezkuwi wUSDT
|
||||
WITHDRAW // Pezkuwi wUSDT -> Polkadot USDT
|
||||
DEPOSIT, // Polkadot USDT -> Pezkuwi wUSDT
|
||||
WITHDRAW // Pezkuwi wUSDT -> Polkadot USDT
|
||||
}
|
||||
|
||||
enum class BridgeTransactionStatus {
|
||||
|
||||
+6
-5
@@ -89,11 +89,12 @@ class BridgeDepositFragment : Fragment() {
|
||||
|
||||
for (x in 0 until width) {
|
||||
for (y in 0 until height) {
|
||||
bitmap.setPixel(
|
||||
x, y,
|
||||
if (bitMatrix.get(x, y)) android.graphics.Color.BLACK
|
||||
else android.graphics.Color.WHITE
|
||||
)
|
||||
val color = if (bitMatrix.get(x, y)) {
|
||||
android.graphics.Color.BLACK
|
||||
} else {
|
||||
android.graphics.Color.WHITE
|
||||
}
|
||||
bitmap.setPixel(x, y, color)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user