(blkNum uint32)
| 789 | } |
| 790 | |
| 791 | func (pool *BlockPool) getExecWriteSet(blkNum uint32) *overlaydb.MemDB { |
| 792 | pool.lock.RLock() |
| 793 | defer pool.lock.RUnlock() |
| 794 | return pool.chainStore.getExecWriteSet(blkNum) |
| 795 | } |
| 796 | |
| 797 | func (pool *BlockPool) submitBlock(blkNum uint32) error { |
| 798 | pool.lock.Lock() |
no outgoing calls
no test coverage detected