diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-11-14 15:32:27 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:57 +0800 |
commit | 862f30e333adcb6250d3eb377cddd468ca05b778 (patch) | |
tree | ea8da1b1fa936bc38536142f05de0798352a23f8 /dex | |
parent | 4f180a3dbddf24b523e7bcd51beb5c869eebcdc7 (diff) | |
download | dexon-862f30e333adcb6250d3eb377cddd468ca05b778.tar dexon-862f30e333adcb6250d3eb377cddd468ca05b778.tar.gz dexon-862f30e333adcb6250d3eb377cddd468ca05b778.tar.bz2 dexon-862f30e333adcb6250d3eb377cddd468ca05b778.tar.lz dexon-862f30e333adcb6250d3eb377cddd468ca05b778.tar.xz dexon-862f30e333adcb6250d3eb377cddd468ca05b778.tar.zst dexon-862f30e333adcb6250d3eb377cddd468ca05b778.zip |
core, dex: Optimize sender calculation in block transactions. (#22)
* Add Transactions.TouchSenders that calculates sender and update cache
* Use TouchSenders to fill the caches
Diffstat (limited to 'dex')
-rw-r--r-- | dex/app.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dex/app.go b/dex/app.go index a90dfae37..7d9c9e13a 100644 --- a/dex/app.go +++ b/dex/app.go @@ -362,6 +362,12 @@ func (d *DexconApp) VerifyBlock(block *coreTypes.Block) coreTypes.BlockVerifySta return coreTypes.VerifyInvalidBlock } + _, err := transactions.TouchSenders(types.MakeSigner(d.blockchain.Config(), new(big.Int))) + if err != nil { + log.Error("Failed to calculate sender", "error", err) + return coreTypes.VerifyInvalidBlock + } + addressNonce, err := d.validateNonce(transactions) if err != nil { log.Error("Validate nonce failed", "error", err) |