aboutsummaryrefslogtreecommitdiffstats
path: root/light
diff options
context:
space:
mode:
authorWei-Ning Huang <aitjcize@gmail.com>2018-11-14 10:57:53 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:49:56 +0800
commitc2adbce8887f41acc19dea4b62c0b209b9eb2072 (patch)
treebf68c51a05e74a53fdf060165778cb35ec2ec964 /light
parent083072c30c6dc407466e4ab48a7c81b42233f225 (diff)
downloaddexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.tar
dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.tar.gz
dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.tar.bz2
dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.tar.lz
dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.tar.xz
dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.tar.zst
dexon-c2adbce8887f41acc19dea4b62c0b209b9eb2072.zip
core: validate DKG set with correct nodeset in round-2 (#19)
* vendor: sync consensus core * core: validate DKG set with correct nodeset in round-2
Diffstat (limited to 'light')
-rw-r--r--light/lightchain.go12
1 files changed, 8 insertions, 4 deletions
diff --git a/light/lightchain.go b/light/lightchain.go
index 688d5a217..7528ef5f8 100644
--- a/light/lightchain.go
+++ b/light/lightchain.go
@@ -534,8 +534,12 @@ func (self *LightChain) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEven
return self.scope.Track(new(event.Feed).Subscribe(ch))
}
-// GetRoundHeightMap returns the mapping between round and height.
-func (self *LightChain) GetRoundHeightMap() sync.Map {
- // TODO(w): fix this.
- return sync.Map{}
+// StateAt returns a new mutable state based on a particular point in time.
+func (self *LightChain) StateAt(root common.Hash) (*state.StateDB, error) {
+ return nil, nil
+}
+
+// GetRoundHeight returns the height of a given round.
+func (self *LightChain) GetRoundHeight(round uint64) (uint64, bool) {
+ return 0, false
}