| 102 | } |
| 103 | |
| 104 | type mutableTree struct { |
| 105 | tree *iavl.MutableTree |
| 106 | lock sync.RWMutex |
| 107 | } |
| 108 | |
| 109 | func (t *mutableTree) GetImmutableAtHeight(version int64) (*iavl.ImmutableTree, error) { |
| 110 | t.lock.RLock() |
nothing calls this directly
no outgoing calls
no test coverage detected