aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-24 05:59:19 +0800
committerobscuren <geffobscura@gmail.com>2015-03-24 05:59:19 +0800
commit0ee0094cc02e81d3a9f5b00cd7cdd421ee069492 (patch)
tree46a350004fb700c1cd8f88224c92f1c639c6ed6b /core
parent7b8a47f4846cd821ecc1f96e381980f7bca1922b (diff)
downloadgo-tangerine-0ee0094cc02e81d3a9f5b00cd7cdd421ee069492.tar
go-tangerine-0ee0094cc02e81d3a9f5b00cd7cdd421ee069492.tar.gz
go-tangerine-0ee0094cc02e81d3a9f5b00cd7cdd421ee069492.tar.bz2
go-tangerine-0ee0094cc02e81d3a9f5b00cd7cdd421ee069492.tar.lz
go-tangerine-0ee0094cc02e81d3a9f5b00cd7cdd421ee069492.tar.xz
go-tangerine-0ee0094cc02e81d3a9f5b00cd7cdd421ee069492.tar.zst
go-tangerine-0ee0094cc02e81d3a9f5b00cd7cdd421ee069492.zip
better block propagation
Diffstat (limited to 'core')
-rw-r--r--core/chain_manager.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/chain_manager.go b/core/chain_manager.go
index 3e030838a..f0d3fd4cf 100644
--- a/core/chain_manager.go
+++ b/core/chain_manager.go
@@ -8,11 +8,11 @@ import (
"sync"
"github.com/ethereum/go-ethereum/common"
+ "github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/rlp"
- "github.com/ethereum/go-ethereum/core/state"
)
var (
@@ -523,7 +523,7 @@ out:
case ChainEvent:
// We need some control over the mining operation. Acquiring locks and waiting for the miner to create new block takes too long
// and in most cases isn't even necessary.
- if i == ev.canonicalCount {
+ if i+1 == ev.canonicalCount {
self.eventMux.Post(ChainHeadEvent{event.Block})
}
case ChainSplitEvent: