aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-02-28 07:35:54 +0800
committerDan <danjm.com@gmail.com>2018-02-28 07:39:02 +0800
commit2b9af0734b6127349ed4f1ed535dee858633776b (patch)
treeffaeae8e732c8d734e82383daf868c957c7a24ce /ui
parent33373b676f4d6ddfa95caa18683cef0be4b6327a (diff)
downloadtangerine-wallet-browser-2b9af0734b6127349ed4f1ed535dee858633776b.tar
tangerine-wallet-browser-2b9af0734b6127349ed4f1ed535dee858633776b.tar.gz
tangerine-wallet-browser-2b9af0734b6127349ed4f1ed535dee858633776b.tar.bz2
tangerine-wallet-browser-2b9af0734b6127349ed4f1ed535dee858633776b.tar.lz
tangerine-wallet-browser-2b9af0734b6127349ed4f1ed535dee858633776b.tar.xz
tangerine-wallet-browser-2b9af0734b6127349ed4f1ed535dee858633776b.tar.zst
tangerine-wallet-browser-2b9af0734b6127349ed4f1ed535dee858633776b.zip
Replace 'Contract Published' with 'Contract Deployment' for clearer indication of contract tx state.
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/transaction-list-item.js2
-rw-r--r--ui/app/components/tx-list-item.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/transaction-list-item.js b/ui/app/components/transaction-list-item.js
index 4e3d2cb93..a45cd441a 100644
--- a/ui/app/components/transaction-list-item.js
+++ b/ui/app/components/transaction-list-item.js
@@ -180,7 +180,7 @@ function recipientField (txParams, transaction, isTx, isMsg) {
} else if (txParams.to) {
message = addressSummary(txParams.to)
} else {
- message = 'Contract Published'
+ message = 'Contract Deployment'
}
return h('div', {
diff --git a/ui/app/components/tx-list-item.js b/ui/app/components/tx-list-item.js
index 7ccc5c315..1a13070c8 100644
--- a/ui/app/components/tx-list-item.js
+++ b/ui/app/components/tx-list-item.js
@@ -63,7 +63,7 @@ TxListItem.prototype.getAddressText = function () {
default:
return address
? `${address.slice(0, 10)}...${address.slice(-4)}`
- : 'Contract Published'
+ : 'Contract Deployment'
}
}