fixed jsonrpc reporting current block is one less than actuall, fixed #612

This commit is contained in:
debris 2016-03-07 10:30:19 +01:00
parent 0da2ec1c0a
commit bcae4f6e7b
1 changed files with 2 additions and 1 deletions

View File

@ -312,7 +312,8 @@ impl EthFilter for EthFilterClient {
None => Ok(Value::Array(vec![] as Vec<Value>)),
Some(info) => match info.filter {
PollFilter::Block => {
let current_number = client.chain_info().best_block_number;
// + 1, cause we want to return hashes including current block hash.
let current_number = client.chain_info().best_block_number + 1;
let hashes = (info.block_number..current_number).into_iter()
.map(BlockId::Number)
.filter_map(|id| client.block_hash(id))