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:
parent
33373b676f
commit
2b9af0734b
@ -123,7 +123,7 @@ function recipientField (txParams, transaction, isTx, isMsg) {
|
|||||||
} else if (txParams.to) {
|
} else if (txParams.to) {
|
||||||
message = addressSummary(txParams.to)
|
message = addressSummary(txParams.to)
|
||||||
} else {
|
} else {
|
||||||
message = 'Contract Published'
|
message = 'Contract Deployment'
|
||||||
}
|
}
|
||||||
|
|
||||||
return h('div', {
|
return h('div', {
|
||||||
|
@ -180,7 +180,7 @@ function recipientField (txParams, transaction, isTx, isMsg) {
|
|||||||
} else if (txParams.to) {
|
} else if (txParams.to) {
|
||||||
message = addressSummary(txParams.to)
|
message = addressSummary(txParams.to)
|
||||||
} else {
|
} else {
|
||||||
message = 'Contract Published'
|
message = 'Contract Deployment'
|
||||||
}
|
}
|
||||||
|
|
||||||
return h('div', {
|
return h('div', {
|
||||||
|
@ -63,7 +63,7 @@ TxListItem.prototype.getAddressText = function () {
|
|||||||
default:
|
default:
|
||||||
return address
|
return address
|
||||||
? `${address.slice(0, 10)}...${address.slice(-4)}`
|
? `${address.slice(0, 10)}...${address.slice(-4)}`
|
||||||
: 'Contract Published'
|
: 'Contract Deployment'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user