aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/blockchain.go13
1 files changed, 11 insertions, 2 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index b2a52f931..3613eb4f9 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -1773,20 +1773,29 @@ func (bc *BlockChain) addPendingBlock(block *types.Block, receipts types.Receipt
bc.lastPendingHeight = block.NumberU64()
}
-func (bc *BlockChain) GetLastPendingHeight() uint64 {
+func (bc *BlockChain) GetPendingHeight() uint64 {
bc.pendingBlockMu.RLock()
defer bc.pendingBlockMu.RUnlock()
return bc.lastPendingHeight
}
-func (bc *BlockChain) GetLastPendingBlock() *types.Block {
+func (bc *BlockChain) GetPendingBlock() *types.Block {
bc.pendingBlockMu.RLock()
defer bc.pendingBlockMu.RUnlock()
return bc.pendingBlocks[bc.lastPendingHeight].block
}
+func (bc *BlockChain) GetPending() (*types.Block, *state.StateDB) {
+ block := bc.GetPendingBlock()
+ s, err := state.New(block.Header().Root, bc.stateCache)
+ if err != nil {
+ panic(err)
+ }
+ return block, s
+}
+
// reorgs takes two blocks, an old chain and a new chain and will reconstruct the blocks and inserts them
// to be part of the new canonical chain and accumulates potential missing transactions and post an
// event about them