Skip to content

Commit

Permalink
Make 'tokenQueryId' field lowercase, handle its parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
omurovch committed Oct 11, 2023
1 parent 89566c7 commit 45a6d93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ dependencies {
implementation 'com.github.horizontalsystems:ethereum-kit-android:ddf4404'
implementation 'com.github.horizontalsystems:blockchain-fee-rate-kit-android:1d3bd49'
implementation 'com.github.horizontalsystems:binance-chain-kit-android:7e4d7c0'
implementation 'com.github.horizontalsystems:market-kit-android:0b065d2'
implementation 'com.github.horizontalsystems:market-kit-android:f5cb101'
implementation 'com.github.horizontalsystems:solana-kit-android:5cc6e81'
implementation 'com.github.horizontalsystems:tron-kit-android:67f8d53'
// Zcash SDK
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ class BackupProvider(
val tokenQuery = TokenQuery.fromId(it.tokenQueryId) ?: return@mapNotNull null
val settings = settingsManager.settings(account, tokenQuery.blockchainType).values
BackupLocalModule.EnabledWalletBackup(
tokenQueryId = it.tokenQueryId,
tokenQueryId = it.tokenQueryId.lowercase(),
coinName = it.coinName,
coinCode = it.coinCode,
decimals = it.coinDecimals,
Expand Down

0 comments on commit 45a6d93

Please sign in to comment.