Skip to content

Commit

Permalink
Fix Ecash transaction sync issue for Created accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelekol committed Feb 26, 2024
1 parent a1b14f9 commit 051a230
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ android {
compileSdk compile_sdk_version
minSdkVersion min_sdk_version
targetSdkVersion compile_sdk_version
versionCode 97
versionName "0.37.3"
versionCode 98
versionName "0.37.4"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

kapt {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class BtcBlockchainManager(
}

fun syncMode(blockchainType: BlockchainType, accountOrigin: AccountOrigin): SyncMode {
if (accountOrigin == AccountOrigin.Created) {
if (accountOrigin == AccountOrigin.Created && blockchainType in blockchairSyncEnabledBlockchains) {
return SyncMode.Blockchair(appConfigProvider.blockchairApiKey)
}

Expand Down

0 comments on commit 051a230

Please sign in to comment.