Fetch events with offset limit

This commit is contained in:
braginini
2022-12-07 10:31:05 +01:00
parent 1a7f441652
commit 94d5d499ac

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