Skip to content

Commit

Permalink
Update ZCash SDK to 2.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelekol committed Nov 22, 2024
1 parent 1a045c8 commit afe4b4e
Show file tree
Hide file tree
Showing 2 changed files with 3 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 @@ -291,7 +291,7 @@ dependencies {
implementation 'com.github.horizontalsystems:tron-kit-android:dc3dca7'
// Zcash SDK
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
implementation "cash.z.ecc.android:zcash-android-sdk:2.1.1"
implementation "cash.z.ecc.android:zcash-android-sdk:2.2.6"
implementation("io.github.binance:binance-connector-java:3.0.0rc2") {
exclude group: "org.bouncycastle", module: "bcprov-jdk18on"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class ZcashAdapter(
max(network.saplingActivationHeight.value, height)
}
?.let {
BlockHeight.new(network, it)
BlockHeight.new(it)
}
}

Expand Down Expand Up @@ -256,6 +256,7 @@ class ZcashAdapter(
is AddressType.Invalid -> throw ZcashError.InvalidAddress
is AddressType.Transparent -> ZCashAddressType.Transparent
is AddressType.Shielded -> ZCashAddressType.Shielded
is AddressType.Tex -> ZCashAddressType.Shielded
AddressType.Unified -> ZCashAddressType.Unified
}
}
Expand Down

0 comments on commit afe4b4e

Please sign in to comment.