From 24e161879e478a589c8857a1b2fec66fa948d225 Mon Sep 17 00:00:00 2001 From: BJ4 Date: Thu, 15 Nov 2018 16:02:19 +0800 Subject: app: add cache to reuse same tx address which has already recovered (#26) --- core/blockchain.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'core/blockchain.go') diff --git a/core/blockchain.go b/core/blockchain.go index 4f3eefc1d..c364e57d2 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -249,6 +249,7 @@ func (bc *BlockChain) GetVMConfig() *vm.Config { type blockInfo struct { addresses map[common.Address]struct{} block *coreTypes.Block + txs types.Transactions } func (bc *BlockChain) AddConfirmedBlock(block *coreTypes.Block) error { @@ -298,6 +299,7 @@ func (bc *BlockChain) AddConfirmedBlock(block *coreTypes.Block) error { bc.confirmedBlocks[chainID][block.Hash] = &blockInfo{ addresses: addressMap, block: block, + txs: transactions, } bc.chainLastHeight[chainID] = block.Position.Height return nil @@ -317,8 +319,8 @@ func (bc *BlockChain) RemoveConfirmedBlock(chainID uint32, hash coreCommon.Hash) delete(bc.confirmedBlocks[chainID], hash) } -func (bc *BlockChain) GetConfirmedBlockByHash(chainID uint32, hash coreCommon.Hash) *coreTypes.Block { - return bc.confirmedBlocks[chainID][hash].block +func (bc *BlockChain) GetConfirmedBlockByHash(chainID uint32, hash coreCommon.Hash) (*coreTypes.Block, types.Transactions) { + return bc.confirmedBlocks[chainID][hash].block, bc.confirmedBlocks[chainID][hash].txs } func (bc *BlockChain) GetLastNonceInConfirmedBlocks(chainID uint32, address common.Address) (uint64, bool) { -- cgit v1.2.3