diff --git a/builder/builder_test.go b/builder/builder_test.go index eb0c253f3c..2461711a0a 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)