aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-09 23:40:28 +0800
committerobscuren <geffobscura@gmail.com>2015-04-09 23:40:28 +0800
commit01ee01219713c80fc9064e9840b42ff2fce374d7 (patch)
tree02daa2105b89b5b6419521785f6f54d217ed544c /core
parent0636e17dbee3accf6291000f0e4f4e713a97a207 (diff)
parent764a802eaa33892447b82069ee1b1bb5a478837b (diff)
downloaddexon-01ee01219713c80fc9064e9840b42ff2fce374d7.tar
dexon-01ee01219713c80fc9064e9840b42ff2fce374d7.tar.gz
dexon-01ee01219713c80fc9064e9840b42ff2fce374d7.tar.bz2
dexon-01ee01219713c80fc9064e9840b42ff2fce374d7.tar.lz
dexon-01ee01219713c80fc9064e9840b42ff2fce374d7.tar.xz
dexon-01ee01219713c80fc9064e9840b42ff2fce374d7.tar.zst
dexon-01ee01219713c80fc9064e9840b42ff2fce374d7.zip
Merge branch 'ethersphere-frontier/blockpool' into develop
Diffstat (limited to 'core')
-rw-r--r--core/chain_manager.go1
-rw-r--r--core/types/block.go4
2 files changed, 5 insertions, 0 deletions
diff --git a/core/chain_manager.go b/core/chain_manager.go
index 9c66a9f53..5ad1dda83 100644
--- a/core/chain_manager.go
+++ b/core/chain_manager.go
@@ -463,6 +463,7 @@ func (self *ChainManager) InsertChain(chain types.Blocks) error {
// Do not penelise on future block. We'll need a block queue eventually that will queue
// future block for future use
if err == BlockFutureErr {
+ block.SetQueued(true)
self.futureBlocks.Push(block)
stats.queued++
continue
diff --git a/core/types/block.go b/core/types/block.go
index 116acbf79..c47b555ed 100644
--- a/core/types/block.go
+++ b/core/types/block.go
@@ -97,6 +97,7 @@ type Block struct {
uncles []*Header
transactions Transactions
Td *big.Int
+ queued bool // flag for blockpool to skip TD check
receipts Receipts
}
@@ -268,6 +269,9 @@ func (self *Block) SetNonce(nonce uint64) {
self.header.SetNonce(nonce)
}
+func (self *Block) Queued() bool { return self.queued }
+func (self *Block) SetQueued(q bool) { self.queued = q }
+
func (self *Block) Bloom() Bloom { return self.header.Bloom }
func (self *Block) Coinbase() common.Address { return self.header.Coinbase }
func (self *Block) Time() int64 { return int64(self.header.Time) }