1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix network reference

This commit is contained in:
Dan Finlay 2016-05-26 14:41:11 -07:00
parent f69721a98d
commit 12d89eb647
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ function recipientField(txParams, transaction, isTx, isMsg) {
} }
TransactionListItem.prototype.renderMessage = function() { TransactionListItem.prototype.renderMessage = function() {
const { transaction, i } = this.props const { transaction, i, network } = this.props
return h('div', 'wowie, thats a message') return h('div', 'wowie, thats a message')
} }

View File

@ -52,7 +52,7 @@ TransactionList.prototype.render = function() {
transactions.length ? transactions.length ?
transactions.map((transaction, i) => { transactions.map((transaction, i) => {
return h(TransactionListItem, { return h(TransactionListItem, {
transaction, i, transaction, i, network,
showTx:(txId) => { showTx:(txId) => {
this.props.viewPendingTx(txId) this.props.viewPendingTx(txId)
}, },