Skip to content

Commit

Permalink
Merge pull request #507 from tari-project/display-contact-for-cancell…
Browse files Browse the repository at this point in the history
…ed-tx

Fix regression: display contact name for a cancelled tx with a contact.
  • Loading branch information
kukabi committed Jul 23, 2020
2 parents 9020166 + e485029 commit e39a42f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ internal class WalletService : Service(), FFIWalletListenerAdapter, LifecycleObs

override fun onTxCancelled(cancelledTx: CancelledTx) {
Logger.d("Tx cancelled: $cancelledTx")
cancelledTx.user = getUserByPublicKey(cancelledTx.user.publicKey)
// post event to bus
EventBus.post(Event.Wallet.TxCancelled(cancelledTx))
// notify external listeners
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
ext.kotlin_version = '1.3.72'

// build & version
ext.buildNumber = 127
ext.buildNumber = 128
ext.versionNumber = "0.3.0"

// JNI libs
Expand Down

0 comments on commit e39a42f

Please sign in to comment.