diff options
Diffstat (limited to 'ui/app/components/pending-tx.js')
-rw-r--r-- | ui/app/components/pending-tx.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js index dce933df1..1feedbbbc 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -42,12 +42,12 @@ PendingTx.prototype.render = function () { h('button.confirm', { onClick: state.sendTransaction, style: { background: 'rgb(251,117,1)' }, - }, 'Confirm'), + }, 'Accept'), h('button.cancel', { onClick: state.cancelTransaction, style: { background: 'rgb(254,35,17)' }, - }, 'Cancel'), + }, 'Reject'), ]), ]) ) |