(blockHeight uint32)
| 689 | } |
| 690 | |
| 691 | func (this *BlockSyncMgr) delBlockCache(blockHeight uint32) { |
| 692 | this.lock.Lock() |
| 693 | defer this.lock.Unlock() |
| 694 | this.blocksCache.delBlockLocked(blockHeight) |
| 695 | } |
| 696 | |
| 697 | func (this *BlockSyncMgr) tryGetSaveBlockLock() bool { |
| 698 | this.lock.Lock() |
no test coverage detected