From 59e98751b2f80685f0f374211bf46bf9148724a5 Mon Sep 17 00:00:00 2001 From: kumavis Date: Wed, 25 May 2016 17:34:31 -0700 Subject: [PATCH] notifications - show tx origin --- app/scripts/lib/notifications.js | 1 + 1 file changed, 1 insertion(+) 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),