1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Replace 'Contract Published' with 'Contract Deployment' for clearer indication of contract tx state.

This commit is contained in:
Dan 2018-02-27 20:05:54 -03:30
parent 33373b676f
commit 2b9af0734b
3 changed files with 3 additions and 3 deletions

View File

@ -123,7 +123,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', {

View File

@ -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', {

View File

@ -63,7 +63,7 @@ TxListItem.prototype.getAddressText = function () {
default:
return address
? `${address.slice(0, 10)}...${address.slice(-4)}`
: 'Contract Published'
: 'Contract Deployment'
}
}