Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Fix loading of transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
slaweet committed Aug 4, 2017
1 parent 252a5b7 commit 67f10d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/transactions/transactionsComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit 67f10d8

Please sign in to comment.