From 621312695a3935edad31b66bb00ddded68f4bff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Negovanovi=C4=87?= Date: Tue, 23 Apr 2024 14:25:30 +0200 Subject: [PATCH] Fix typo --- test/operations/transactions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/operations/transactions.go b/test/operations/transactions.go index e2279929..8a1b38af 100644 --- a/test/operations/transactions.go +++ b/test/operations/transactions.go @@ -32,7 +32,7 @@ func WaitTxToBeMined(hash ethgo.Hash, level ConfirmationLevel, client *jsonrpc.C time.Sleep(time.Second) continue } - fmt.Printf("tx %s included in the trusted state at the L2 blcok %d\n", hash.String(), receipt.BlockNumber) + fmt.Printf("tx %s included in the trusted state at the L2 block %d\n", hash.String(), receipt.BlockNumber) if level == Trusted { return nil }