diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-15 13:30:50 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:53 +0800 |
commit | b26e4c9adaa2952a63bf811f991a3e6fb9fc5646 (patch) | |
tree | 84f78ba24e34b4ae6bca777fd6edc659bb16feb9 /core/chain_makers_test.go | |
parent | 426fdd07f71aea7de2fe8ca010f17afaf774c047 (diff) | |
download | dexon-b26e4c9adaa2952a63bf811f991a3e6fb9fc5646.tar.gz dexon-b26e4c9adaa2952a63bf811f991a3e6fb9fc5646.tar.zst dexon-b26e4c9adaa2952a63bf811f991a3e6fb9fc5646.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/chain_makers_test.go')
-rw-r--r-- | core/chain_makers_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/chain_makers_test.go b/core/chain_makers_test.go index cb01ae0c9..0fb995f5f 100644 --- a/core/chain_makers_test.go +++ b/core/chain_makers_test.go @@ -148,6 +148,7 @@ func ExampleGenerateChainWithRoundChange() { }, addr1: { Balance: big.NewInt(1000000), + Staked: big.NewInt(0), }, }, } |