diff --git a/prover/proof_submitter/util.go b/prover/proof_submitter/util.go index c2fcdcdcc..c5f21a191 100644 --- a/prover/proof_submitter/util.go +++ b/prover/proof_submitter/util.go @@ -103,22 +103,6 @@ func sendTxWithBackoff( return nil } - // Check if this proof is still needed at first. - needNewProof, err := rpc.NeedNewProof(ctx, cli, blockID, common.Address{}) - if err != nil { - log.Warn( - "Failed to check if the generated proof is needed", - "blockID", blockID, - "error", err, - ) - return err - } - - if !needNewProof { - log.Info("Proof was submitted another prover, skip the current proof submission", "blockID", blockID) - return nil - } - tx, err := sendTxFunc() if err != nil { err = encoding.TryParsingCustomError(err)