Merge pull request #3340 from danjm/i3338-contract-published-terminology

[NewUI] Replace 'Contract Published' label with 'Contract Deployment'
This commit is contained in:
kumavis 2018-02-28 11:16:55 -08:00 committed by GitHub
commit 28c6347cdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'
}
}