mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
ui - send - clean props assignment
This commit is contained in:
parent
6abdec608e
commit
d5636080cf
@ -41,14 +41,16 @@ function SendTransactionScreen () {
|
|||||||
SendTransactionScreen.prototype.render = function () {
|
SendTransactionScreen.prototype.render = function () {
|
||||||
this.persistentFormParentId = 'send-tx-form'
|
this.persistentFormParentId = 'send-tx-form'
|
||||||
|
|
||||||
var props = this.props
|
const props = this.props
|
||||||
var address = props.address
|
const {
|
||||||
var account = props.account
|
address,
|
||||||
var identity = props.identity
|
account,
|
||||||
var network = props.network
|
identity,
|
||||||
var identities = props.identities
|
network,
|
||||||
var addressBook = props.addressBook
|
identities,
|
||||||
var conversionRate = props.conversionRate
|
addressBook,
|
||||||
|
conversionRate
|
||||||
|
} = props
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user