remove accidental gap in next nonce

This commit is contained in:
Robert Habermeier 2017-02-09 22:37:56 +01:00
parent e53d023a8a
commit 5e65081d4f

View File

@ -246,7 +246,7 @@ impl Dispatcher for LightDispatcher {
nonce_future nonce_future
.map_err(|_| errors::no_light_peers()) .map_err(|_| errors::no_light_peers())
.and_then(move |acc| with_nonce(filled, acc.nonce + U256::one())) .and_then(move |acc| with_nonce(filled, acc.nonce))
.boxed() .boxed()
} }