diff options
author | BJ4 <bojie@dexon.org> | 2018-11-15 16:02:19 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 2bb4c1bfc76895cd8e8ef095523fe0932ade7098 (patch) | |
tree | c1a4c128e7211c16cc2979c9c3108baedf766301 /core | |
parent | 8150597b3878368ad090c9846cdf50dd812b2181 (diff) | |
download | dexon-2bb4c1bfc76895cd8e8ef095523fe0932ade7098.tar.gz dexon-2bb4c1bfc76895cd8e8ef095523fe0932ade7098.tar.zst dexon-2bb4c1bfc76895cd8e8ef095523fe0932ade7098.zip |
app: add cache to reuse same tx address which has already recovered (#26)
Diffstat (limited to 'core')
-rw-r--r-- | core/blockchain.go | 6 | ||||
-rw-r--r-- | core/tx_pool.go | 2 | ||||
-rw-r--r-- | core/types/transaction_signing.go | 36 |
3 files changed, 41 insertions, 3 deletions
diff --git a/core/blockchain.go b/core/blockchain.go index 43d044875..6e0549153 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) { diff --git a/core/tx_pool.go b/core/tx_pool.go index 54bad9eae..fc36d50bf 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -965,6 +965,8 @@ func (pool *TxPool) removeTx(hash common.Hash, outofbound bool) { delete(pool.queue, addr) } } + + types.DeleteTxCacheByHash(hash) } // promoteExecutables moves transactions that have become processable from the diff --git a/core/types/transaction_signing.go b/core/types/transaction_signing.go index cd18a7e13..a6c5c1f16 100644 --- a/core/types/transaction_signing.go +++ b/core/types/transaction_signing.go @@ -21,6 +21,7 @@ import ( "errors" "fmt" "math/big" + "sync" "github.com/dexon-foundation/dexon/common" "github.com/dexon-foundation/dexon/crypto" @@ -31,6 +32,27 @@ var ( ErrInvalidChainId = errors.New("invalid chain id for signer") ) +var ( + txCache = &sync.Map{} +) + +func DeleteTxCacheByHash(hash common.Hash) { + txCache.Delete(hash) +} + +func StoreTxCache(key common.Hash, value common.Address) { + txCache.Store(key, value) +} + +func LoadTxCache(key common.Hash) (common.Address, bool) { + addr, ok := txCache.Load(key) + if !ok { + return common.Address{}, ok + } + + return addr.(common.Address), ok +} + // sigCache is used to cache the derived sender and contains // the signer used to derive it. type sigCache struct { @@ -125,6 +147,11 @@ func (s EIP155Signer) Equal(s2 Signer) bool { var big8 = big.NewInt(8) func (s EIP155Signer) Sender(tx *Transaction) (common.Address, error) { + addr, ok := LoadTxCache(tx.Hash()) + if ok { + return addr, nil + } + if !tx.Protected() { return HomesteadSigner{}.Sender(tx) } @@ -133,7 +160,14 @@ func (s EIP155Signer) Sender(tx *Transaction) (common.Address, error) { } V := new(big.Int).Sub(tx.data.V, s.chainIdMul) V.Sub(V, big8) - return recoverPlain(s.Hash(tx), tx.data.R, tx.data.S, V, true) + + addr, err := recoverPlain(s.Hash(tx), tx.data.R, tx.data.S, V, true) + if err != nil { + return common.Address{}, err + } + + StoreTxCache(tx.Hash(), addr) + return addr, nil } // SignatureValues returns signature values. This signature |