Skip to content

Commit 2b9af07

Browse files
committed
Replace 'Contract Published' with 'Contract Deployment' for clearer indication of contract tx state.
1 parent 33373b6 commit 2b9af07

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

old-ui/app/components/transaction-list-item.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ function recipientField (txParams, transaction, isTx, isMsg) {
123123
} else if (txParams.to) {
124124
message = addressSummary(txParams.to)
125125
} else {
126-
message = 'Contract Published'
126+
message = 'Contract Deployment'
127127
}
128128

129129
return h('div', {

ui/app/components/transaction-list-item.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ function recipientField (txParams, transaction, isTx, isMsg) {
180180
} else if (txParams.to) {
181181
message = addressSummary(txParams.to)
182182
} else {
183-
message = 'Contract Published'
183+
message = 'Contract Deployment'
184184
}
185185

186186
return h('div', {

ui/app/components/tx-list-item.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ TxListItem.prototype.getAddressText = function () {
6363
default:
6464
return address
6565
? `${address.slice(0, 10)}...${address.slice(-4)}`
66-
: 'Contract Published'
66+
: 'Contract Deployment'
6767
}
6868
}
6969

0 commit comments

Comments
 (0)