Skip to content
This repository was archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
rm from sendtexwithbackoff
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey committed Aug 9, 2023
1 parent 23d1bb2 commit 16c4f7c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion prover/proof_submitter/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ func sendTxWithBackoff(
retryInterval time.Duration,
maxRetry *uint64,
waitReceiptTimeout time.Duration,
proveBlocktxGasLimit *uint64,
) error {
var (
isUnretryableError bool
Expand Down
2 changes: 0 additions & 2 deletions prover/proof_submitter/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ func (s *ProofSubmitterTestSuite) TestSendTxWithBackoff() {
12*time.Second,
&testMaxRetry,
5*time.Second,
nil,
))

s.Nil(sendTxWithBackoff(
Expand Down Expand Up @@ -78,6 +77,5 @@ func (s *ProofSubmitterTestSuite) TestSendTxWithBackoff() {
12*time.Second,
&testMaxRetry,
5*time.Second,
nil,
))
}
1 change: 0 additions & 1 deletion prover/proof_submitter/valid_proof_submitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,6 @@ func (s *ValidProofSubmitter) SubmitProof(
s.retryInterval,
maxRetry,
s.waitReceiptTimeout,
s.proveBlockTxGasLimit,
); err != nil {
if errors.Is(err, errUnretryable) {
return nil
Expand Down

0 comments on commit 16c4f7c

Please sign in to comment.