Fetch events with offset limit

This commit is contained in:
braginini
2022-12-07 10:31:05 +01:00
parent 0f4d132b93
commit 0e3bbf0e55

View File

@@ -40,7 +40,7 @@ func TestNewSQLiteStore(t *testing.T) {
assert.Len(t, result, 10)
result, err = store.GetLast(accountID, 5)
result, err = store.Get(accountID, 1, 5, true)
if err != nil {
t.Fatal(err)
return