(blockNum uint32)
| 383 | } |
| 384 | |
| 385 | func (self *EventTimer) startTxTicker(blockNum uint32) error { |
| 386 | self.lock.Lock() |
| 387 | defer self.lock.Unlock() |
| 388 | |
| 389 | return self.startEventTimer(EventTxPool, blockNum) |
| 390 | } |
| 391 | |
| 392 | func (self *EventTimer) stopTxTicker(blockNum uint32) { |
| 393 | self.lock.Lock() |
no test coverage detected