(blockNum uint32)
| 344 | } |
| 345 | |
| 346 | func (self *EventTimer) CancelTxBlockTimeout(blockNum uint32) { |
| 347 | self.lock.Lock() |
| 348 | defer self.lock.Unlock() |
| 349 | |
| 350 | self.cancelEventTimer(EventTxBlockTimeout, blockNum) |
| 351 | } |
| 352 | |
| 353 | func (self *EventTimer) startPeerTicker(peerIdx uint32) error { |
| 354 | self.lock.Lock() |
no test coverage detected