diff options
author | Sonic <sonic@dexon.org> | 2018-11-30 12:35:33 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:58 +0800 |
commit | e1b413db2256ad0070697970910b72405216758a (patch) | |
tree | 392f312e84ff1faae8ce98e3b64a20aa7e96dbdf /core | |
parent | a1da9e0801c52ff9da3855fc4679cf7f15080d3a (diff) | |
download | dexon-e1b413db2256ad0070697970910b72405216758a.tar dexon-e1b413db2256ad0070697970910b72405216758a.tar.gz dexon-e1b413db2256ad0070697970910b72405216758a.tar.bz2 dexon-e1b413db2256ad0070697970910b72405216758a.tar.lz dexon-e1b413db2256ad0070697970910b72405216758a.tar.xz dexon-e1b413db2256ad0070697970910b72405216758a.tar.zst dexon-e1b413db2256ad0070697970910b72405216758a.zip |
dex: verify header that imported from fetcher (#68)
Diffstat (limited to 'core')
-rw-r--r-- | core/blockchain.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/blockchain.go b/core/blockchain.go index 625bf7e3a..b22da28ab 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -1734,6 +1734,10 @@ func (bc *BlockChain) insertDexonChain(chain types.Blocks) (int, []interface{}, return 0, events, coalescedLogs, nil } +func (bc *BlockChain) VerifyDexonHeader(header *types.Header) error { + return bc.hc.verifyTSig(header, bc.verifierCache) +} + func (bc *BlockChain) ProcessPendingBlock(block *types.Block, witness *coreTypes.Witness) (*common.Hash, error) { n, events, logs, err := bc.processPendingBlock(block, witness) bc.PostChainEvents(events, logs) |