Skip to content

Commit

Permalink
Merge pull request #191 from breadwallet/release/4.9.1
Browse files Browse the repository at this point in the history
Release/4.9.1
  • Loading branch information
DrewCarlson authored Mar 10, 2021
2 parents 15cba6f + a205746 commit a6b8add
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion app/src/main/java/com/breadwallet/breadbox/CoreBreadBox.kt
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,10 @@ internal class CoreBreadBox(
}
return transferUpdatedChannelMap
.asFlow()
.filter { targetTransfer(it) }
.filter { updatedTransfer ->
updatedTransfer.wallet.currency.code.equals(currencyCode, true) &&
targetTransfer(updatedTransfer)
}
.onStart {
emit(
system?.wallets
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/brd/BrdRelease.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ object BrdRelease {
/** Minor version. Usually affected by product. Maximum value: 99 */
private const val product = 9
/** Hot fix version. Usually affected by engineering. Maximum value: 9 */
private const val engineering = 0
private const val engineering = 1
/** Build version. Increase for each new build. Maximum value: 999 */
private const val build = 5
private const val build = 1

init {
check(marketing in 0..99)
Expand Down

0 comments on commit a6b8add

Please sign in to comment.