aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/tx-list-item.js
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/app/components/tx-list-item.js
parent33373b676f4d6ddfa95caa18683cef0be4b6327a (diff)
downloadtangerine-wallet-browser-2b9af0734b6127349ed4f1ed535dee858633776b.tar.gz
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/app/components/tx-list-item.js')
-rw-r--r--ui/app/components/tx-list-item.js2
1 files changed, 1 insertions, 1 deletions
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'
}
}