aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-05-26 08:34:31 +0800
committerkumavis <aaron@kumavis.me>2016-05-26 08:34:31 +0800
commit59e98751b2f80685f0f374211bf46bf9148724a5 (patch)
treecca7af74553c8b6a820732288f98d279edd92919 /app/scripts
parent821648fad7e863d3c76a861285525ea4ba764eb0 (diff)
downloadtangerine-wallet-browser-59e98751b2f80685f0f374211bf46bf9148724a5.tar
tangerine-wallet-browser-59e98751b2f80685f0f374211bf46bf9148724a5.tar.gz
tangerine-wallet-browser-59e98751b2f80685f0f374211bf46bf9148724a5.tar.bz2
tangerine-wallet-browser-59e98751b2f80685f0f374211bf46bf9148724a5.tar.lz
tangerine-wallet-browser-59e98751b2f80685f0f374211bf46bf9148724a5.tar.xz
tangerine-wallet-browser-59e98751b2f80685f0f374211bf46bf9148724a5.tar.zst
tangerine-wallet-browser-59e98751b2f80685f0f374211bf46bf9148724a5.zip
notifications - show tx origin
Diffstat (limited to 'app/scripts')
-rw-r--r--app/scripts/lib/notifications.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/scripts/lib/notifications.js b/app/scripts/lib/notifications.js
index 0b55417b2..4626afdd1 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),