diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-05 13:49:08 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:56 +0800 |
commit | 7fa90ef85676716344cc0074cdd054ed431f635a (patch) | |
tree | 10ceb7593a465b0b1abe2b26b7a75e304657563d /light | |
parent | 117e1ec3454df4705b30b53c2a071f43abcb93e8 (diff) | |
download | dexon-7fa90ef85676716344cc0074cdd054ed431f635a.tar dexon-7fa90ef85676716344cc0074cdd054ed431f635a.tar.gz dexon-7fa90ef85676716344cc0074cdd054ed431f635a.tar.bz2 dexon-7fa90ef85676716344cc0074cdd054ed431f635a.tar.lz dexon-7fa90ef85676716344cc0074cdd054ed431f635a.tar.xz dexon-7fa90ef85676716344cc0074cdd054ed431f635a.tar.zst dexon-7fa90ef85676716344cc0074cdd054ed431f635a.zip |
core: validate roundHeight mapping in governance contract
Diffstat (limited to 'light')
-rw-r--r-- | light/lightchain.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/light/lightchain.go b/light/lightchain.go index 2a6c821bd..688d5a217 100644 --- a/light/lightchain.go +++ b/light/lightchain.go @@ -533,3 +533,9 @@ func (self *LightChain) SubscribeLogsEvent(ch chan<- []*types.Log) event.Subscri func (self *LightChain) SubscribeRemovedLogsEvent(ch chan<- core.RemovedLogsEvent) event.Subscription { 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{} +} |