()
| 147 | } |
| 148 | |
| 149 | func (r *runtime) getMinValidHeight() int32 { |
| 150 | r.stateMutex.Lock() |
| 151 | defer r.stateMutex.Unlock() |
| 152 | return r.nextTurn - r.queryTTL |
| 153 | } |
| 154 | |
| 155 | func (r *runtime) queryTimeIsExpired(t time.Time) bool { |
| 156 | // Checking query expiration for the pending block, whose height is c.rt.NextHeight: |
no outgoing calls
no test coverage detected