diff options
author | kumavis <aaron@kumavis.me> | 2016-05-26 08:34:31 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2016-05-26 08:34:31 +0800 |
commit | 59e98751b2f80685f0f374211bf46bf9148724a5 (patch) | |
tree | cca7af74553c8b6a820732288f98d279edd92919 /app | |
parent | 821648fad7e863d3c76a861285525ea4ba764eb0 (diff) | |
download | dexon-wallet-59e98751b2f80685f0f374211bf46bf9148724a5.tar.gz dexon-wallet-59e98751b2f80685f0f374211bf46bf9148724a5.tar.zst dexon-wallet-59e98751b2f80685f0f374211bf46bf9148724a5.zip |
notifications - show tx origin
Diffstat (limited to 'app')
-rw-r--r-- | app/scripts/lib/notifications.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/scripts/lib/notifications.js b/app/scripts/lib/notifications.js index 0b55417b..4626afdd 100644 --- a/app/scripts/lib/notifications.js +++ b/app/scripts/lib/notifications.js @@ -40,6 +40,7 @@ function createUnlockRequestNotification(opts){ function createTxNotification(opts){ var message = [ + 'Submitted by '+opts.txParams.origin, 'to: '+uiUtils.addressSummary(opts.txParams.to), 'from: '+uiUtils.addressSummary(opts.txParams.from), 'value: '+uiUtils.formatBalance(opts.txParams.value), |