diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-15 13:30:50 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 8150597b3878368ad090c9846cdf50dd812b2181 (patch) | |
tree | e6990143005d574424330aeb51af6dc2a193fd06 /core/blockchain_test.go | |
parent | a27488515c91066a30989b6c751d214544367a1a (diff) | |
download | dexon-8150597b3878368ad090c9846cdf50dd812b2181.tar.gz dexon-8150597b3878368ad090c9846cdf50dd812b2181.tar.zst dexon-8150597b3878368ad090c9846cdf50dd812b2181.zip |
core: refactor validator and fix light node sync (#25)
Remove custom Dexon validator by adding a new `ValidateWitnessData`
method into the validator interface. This allow us to properly detect
know blocks. This also allow other gdex "light" client to sync
compaction chain. Also, setup a standalone RPC node for handling RPC
reqeusts.
Diffstat (limited to 'core/blockchain_test.go')
-rw-r--r-- | core/blockchain_test.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/blockchain_test.go b/core/blockchain_test.go index 786c47064..11bb1317a 100644 --- a/core/blockchain_test.go +++ b/core/blockchain_test.go @@ -1074,9 +1074,6 @@ func TestEIP155Transition(t *testing.T) { } ) - dexConf := new(params.DexconConfig) - dexConf.BlockReward = new(big.Int) - gspec.Config.Dexcon = dexConf genesis := gspec.MustCommit(db) blockchain, _ := NewBlockChain(db, nil, gspec.Config, ethash.NewFaker(), vm.Config{}, nil) |