Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rianhughes committed Dec 17, 2024
1 parent f89f5d1 commit e9ccfc0
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions builder/builder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e9ccfc0

Please sign in to comment.