(index uint32)
| 36 | } |
| 37 | |
| 38 | func (table *IndexTable) Delete(index uint32) { |
| 39 | table.Lock() |
| 40 | defer table.Unlock() |
| 41 | delete(table.table, index) |
| 42 | } |
| 43 | |
| 44 | func (table *IndexTable) SwapIndexForKeypair(index uint32, keypair *Keypair) { |
| 45 | table.Lock() |
no outgoing calls
no test coverage detected