aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/app/components/transaction-list-item.js2
-rw-r--r--ui/app/components/transaction-list.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/transaction-list-item.js b/ui/app/components/transaction-list-item.js
index ac74046f3..fdb970f07 100644
--- a/ui/app/components/transaction-list-item.js
+++ b/ui/app/components/transaction-list-item.js
@@ -107,7 +107,7 @@ function recipientField(txParams, transaction, isTx, isMsg) {
}
TransactionListItem.prototype.renderMessage = function() {
- const { transaction, i } = this.props
+ const { transaction, i, network } = this.props
return h('div', 'wowie, thats a message')
}
diff --git a/ui/app/components/transaction-list.js b/ui/app/components/transaction-list.js
index 5ebb3e563..ed2e1ee0a 100644
--- a/ui/app/components/transaction-list.js
+++ b/ui/app/components/transaction-list.js
@@ -52,7 +52,7 @@ TransactionList.prototype.render = function() {
transactions.length ?
transactions.map((transaction, i) => {
return h(TransactionListItem, {
- transaction, i,
+ transaction, i, network,
showTx:(txId) => {
this.props.viewPendingTx(txId)
},