From 5e65081d4f83706e034d11eadea17f930294da8b Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Thu, 9 Feb 2017 22:37:56 +0100 Subject: [PATCH] remove accidental gap in next nonce --- rpc/src/v1/helpers/dispatch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/src/v1/helpers/dispatch.rs b/rpc/src/v1/helpers/dispatch.rs index a27193cfc..b12f26e36 100644 --- a/rpc/src/v1/helpers/dispatch.rs +++ b/rpc/src/v1/helpers/dispatch.rs @@ -246,7 +246,7 @@ impl Dispatcher for LightDispatcher { nonce_future .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() }