mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
Remove send button
Some token precisions are not respected by TokenFactory, so it's not sufficient for a default send form. Removing for now.
This commit is contained in:
parent
c9dd8a9cfd
commit
0c011d0fda
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
|
- Remove SEND token button until a better token sending form can be built, due to some precision issues.
|
||||||
|
|
||||||
## 3.8.0 2017-6-28
|
## 3.8.0 2017-6-28
|
||||||
|
|
||||||
- No longer stop rebroadcasting transactions
|
- No longer stop rebroadcasting transactions
|
||||||
|
@ -31,9 +31,11 @@ TokenCell.prototype.render = function () {
|
|||||||
|
|
||||||
h('span', { style: { flex: '1 0 auto' } }),
|
h('span', { style: { flex: '1 0 auto' } }),
|
||||||
|
|
||||||
|
/*
|
||||||
h('button', {
|
h('button', {
|
||||||
onClick: this.send.bind(this, address),
|
onClick: this.send.bind(this, address),
|
||||||
}, 'SEND'),
|
}, 'SEND'),
|
||||||
|
*/
|
||||||
|
|
||||||
])
|
])
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user