From 67f10d8141d2e7b167588c7282963cab04717ec5 Mon Sep 17 00:00:00 2001 From: Vit Stanislav Date: Fri, 4 Aug 2017 14:26:46 +0200 Subject: [PATCH] Fix loading of transactions --- src/components/transactions/transactionsComponent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/transactions/transactionsComponent.js b/src/components/transactions/transactionsComponent.js index 864f5b4d1..3d61502a5 100644 --- a/src/components/transactions/transactionsComponent.js +++ b/src/components/transactions/transactionsComponent.js @@ -12,7 +12,7 @@ class Transactions extends React.Component { } loadMore() { - if (this.state.canLoadMore) { + if (this.canLoadMore) { this.canLoadMore = false; transactions(this.props.activePeer, this.props.address, 20, this.props.transactions.length) .then((res) => {