Fetch events with offset limit

This commit is contained in:
braginini
2022-12-22 12:06:15 +01:00
parent 1a7f441652
commit 94d5d499ac
+1 -1
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