diff options
author | Felix Lange <fjl@users.noreply.github.com> | 2016-12-13 03:46:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-13 03:46:15 +0800 |
commit | a98e8c0889d7c4c1bded452c577bd4b9c7fa0f6b (patch) | |
tree | faccd87d6e1634b51f788fa170bc1f03a829ca42 /light/lightchain.go | |
parent | ee445a2ba4013f8b32e4e5386322babf022e5b81 (diff) | |
parent | f12f8a6c14dbaf6e6531cea1b0cf169b851e1894 (diff) | |
download | dexon-a98e8c0889d7c4c1bded452c577bd4b9c7fa0f6b.tar dexon-a98e8c0889d7c4c1bded452c577bd4b9c7fa0f6b.tar.gz dexon-a98e8c0889d7c4c1bded452c577bd4b9c7fa0f6b.tar.bz2 dexon-a98e8c0889d7c4c1bded452c577bd4b9c7fa0f6b.tar.lz dexon-a98e8c0889d7c4c1bded452c577bd4b9c7fa0f6b.tar.xz dexon-a98e8c0889d7c4c1bded452c577bd4b9c7fa0f6b.tar.zst dexon-a98e8c0889d7c4c1bded452c577bd4b9c7fa0f6b.zip |
Merge pull request #3413 from zsfelfoldi/light-topic4
les, p2p/discv5: implement server pool, improve peer selection, light fetcher and topic searching
Diffstat (limited to 'light/lightchain.go')
-rw-r--r-- | light/lightchain.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/light/lightchain.go b/light/lightchain.go index 1cea7a892..d397f5006 100644 --- a/light/lightchain.go +++ b/light/lightchain.go @@ -505,3 +505,14 @@ func (self *LightChain) SyncCht(ctx context.Context) bool { } return false } + +// LockChain locks the chain mutex for reading so that multiple canonical hashes can be +// retrieved while it is guaranteed that they belong to the same version of the chain +func (self *LightChain) LockChain() { + self.chainmu.RLock() +} + +// UnlockChain unlocks the chain mutex +func (self *LightChain) UnlockChain() { + self.chainmu.RUnlock() +} |