From 1a9728ff9e6fbc858b67e781d6d55b8708a18564 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toni=20Ram=C3=ADrez?= Date: Mon, 6 May 2024 10:29:48 +0200 Subject: [PATCH] fix test --- test/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/main.go b/test/main.go index a55ba1f..daba6af 100644 --- a/test/main.go +++ b/test/main.go @@ -110,7 +110,7 @@ func main() { } func sendTransaction(ctx context.Context, ethtxmanager *ethtxmanager.Client, nonce uint64) common.Hash { - id, err := ethtxmanager.Add(ctx, &to0, &nonce, big.NewInt(1), []byte{byte(rand.Intn(256)), byte(rand.Intn(256)), byte(rand.Intn(256))}, nil) + id, err := ethtxmanager.Add(ctx, &to0, &nonce, big.NewInt(1), []byte{byte(rand.Intn(256)), byte(rand.Intn(256)), byte(rand.Intn(256))}, 0, nil) if err != nil { log.Errorf("Error sending transaction: %s", err) } else {