From e9ccfc0de1e7a2717b6c592ee9a3964005ae43c1 Mon Sep 17 00:00:00 2001 From: rian Date: Tue, 17 Dec 2024 12:02:09 +0200 Subject: [PATCH] lint --- builder/builder_test.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/builder/builder_test.go b/builder/builder_test.go index eb0c253f3..2461711a0 100644 --- a/builder/builder_test.go +++ b/builder/builder_test.go @@ -49,18 +49,6 @@ func waitForBlock(t *testing.T, bc blockchain.Reader, timeout time.Duration, tar }) } -func waitForTxns(t *testing.T, bc blockchain.Reader, timeout time.Duration, txns []*felt.Felt) { - waitFor(t, timeout, func() bool { - for _, txnHash := range txns { - _, _, _, err := bc.Receipt(txnHash) - if err != nil { - return false - } - } - return true - }) -} - func TestSign(t *testing.T) { testDB := pebble.NewMemTest(t) mockCtrl := gomock.NewController(t)