Merge branch 'master' into txtracingforcall

This commit is contained in:
Gav Wood
2016-06-02 16:44:11 +02:00
4 changed files with 4 additions and 6 deletions

View File

@@ -169,8 +169,9 @@ impl<C, M> EthFilter for EthFilterClient<C, M> where
logs.extend(new_pending_logs);
}
// save current block number as next from block number
*block_number = current_number;
// save the number of the next block as a first block from which
// we want to get logs
*block_number = current_number + 1;
to_value(&logs)
}