txRingIterator lets you iterate over the ring. It doesn't terminate, it DOESN'T terminate.
| 300 | // txRingIterator lets you iterate over the ring. It doesn't terminate, |
| 301 | // it DOESN'T terminate. |
| 302 | type txRingIterator struct { |
| 303 | ids []uint64 |
| 304 | |
| 305 | pos uint32 |
| 306 | } |
| 307 | |
| 308 | func (it *txRingIterator) At() uint64 { |
| 309 | return it.ids[it.pos] |
nothing calls this directly
no outgoing calls
no test coverage detected