Skip to content

Commit

Permalink
implement HistoryStartFrom for MemoryMutation
Browse files Browse the repository at this point in the history
  • Loading branch information
antonis19 committed Dec 12, 2024
1 parent 8aafcb0 commit 43b228b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions erigon-lib/kv/membatchwithdb/memory_mutation.go
Original file line number Diff line number Diff line change
Expand Up @@ -741,3 +741,7 @@ func (m *MemoryMutation) HistoryRange(name kv.Domain, fromTs, toTs int, asc orde
panic("not supported")
// return m.db.(kv.TemporalTx).HistoryRange(name, fromTs, toTs, asc, limit)
}

func (m *MemoryMutation) HistoryStartFrom(name kv.Domain) uint64 {
return m.db.(kv.TemporalTx).HistoryStartFrom(name)
}

0 comments on commit 43b228b

Please sign in to comment.