diff options
author | Wei-Ning Huang <aitjcize@gmail.com> | 2018-11-09 14:16:18 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:56 +0800 |
commit | 441fbb99d79aba3d11b913191ce90c12f7138412 (patch) | |
tree | ad517cf87d0d75165f4dffd6b9a5b63d2c6dbd77 | |
parent | 2d39e5ae316d4560c7dd7c867011f8657d6110a4 (diff) | |
download | dexon-441fbb99d79aba3d11b913191ce90c12f7138412.tar dexon-441fbb99d79aba3d11b913191ce90c12f7138412.tar.gz dexon-441fbb99d79aba3d11b913191ce90c12f7138412.tar.bz2 dexon-441fbb99d79aba3d11b913191ce90c12f7138412.tar.lz dexon-441fbb99d79aba3d11b913191ce90c12f7138412.tar.xz dexon-441fbb99d79aba3d11b913191ce90c12f7138412.tar.zst dexon-441fbb99d79aba3d11b913191ce90c12f7138412.zip |
core: blockchain: fix NewBlockChainWithDexonValidator (#4)
-rw-r--r-- | core/blockchain.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/blockchain.go b/core/blockchain.go index 79e0b2a02..dce1c276a 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -279,7 +279,7 @@ func NewBlockChainWithDexonValidator(db ethdb.Database, cacheConfig *CacheConfig addressCounter: make(map[uint32]map[common.Address]uint64), chainLastHeight: make(map[uint32]uint64), } - bc.SetValidator(NewBlockValidator(chainConfig, bc, engine)) + bc.SetValidator(NewDexonBlockValidator(chainConfig, bc, engine)) bc.SetProcessor(NewStateProcessor(chainConfig, bc, engine)) var err error |