This commit is contained in:
debris 2016-06-02 12:44:05 +02:00
parent e170916563
commit 9a626c84bc
1 changed files with 3 additions and 2 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)
}