From f541a20b3f340e092925756d00baa654f45594da Mon Sep 17 00:00:00 2001 From: Arnau Date: Thu, 12 Sep 2024 15:21:03 +0200 Subject: [PATCH] fix compilation --- test/helpers/aggoracle_e2e.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers/aggoracle_e2e.go b/test/helpers/aggoracle_e2e.go index 46b2e6cd..b43ce5e9 100644 --- a/test/helpers/aggoracle_e2e.go +++ b/test/helpers/aggoracle_e2e.go @@ -114,7 +114,7 @@ func CommonSetup(t *testing.T) ( // Syncer dbPathSyncer := path.Join(t.TempDir(), "file::memory:?cache=shared") maxRetries := 3 - syncBlockChunkSize := 10 + syncBlockChunkSize := uint64(10) syncer, err := l1infotreesync.New(ctx, dbPathSyncer, gerL1Addr, common.Address{}, syncBlockChunkSize, etherman.LatestBlock, reorg, l1Client.Client(), time.Millisecond, 0, 100*time.Millisecond, maxRetries) require.NoError(t, err) go syncer.Start(ctx)