Skip to content

Commit

Permalink
adding loan token to markets
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
Joey Harward committed Sep 10, 2021
1 parent ff81267 commit fb97826
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const val kotlinVersion = "1.5.21"
const val orchidVersion = "0.21.1"

object ProtonSdk {
const val versionCode = 45
const val versionName = "1.0.7"
const val versionCode = 46
const val versionName = "1.0.8"
}

object BuildPlugins {
Expand Down
2 changes: 1 addition & 1 deletion protonsdk/src/main/java/com/metallicus/protonsdk/Proton.kt
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ class Proton private constructor(context: Context) {
val tokenContracts = getTokenContractsAsync()

val marketContracts = tokenContracts.filter {
it.contract == "eosio.token" || it.contract == "xtokens"
it.contract == "eosio.token" || it.contract == "xtokens" || it.contract=="loan.token"
}

if (updateExchangeRates) {
Expand Down

0 comments on commit fb97826

Please sign in to comment.