From b37dc9edc432a68c18fe8788a2611a7390b8ae28 Mon Sep 17 00:00:00 2001 From: Zach Obront Date: Tue, 6 Aug 2024 14:29:18 -0500 Subject: [PATCH] rename queue pending agg proofs --- op-proposer/proposer/driver.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/op-proposer/proposer/driver.go b/op-proposer/proposer/driver.go index d4a143da1f..2e646531f1 100644 --- a/op-proposer/proposer/driver.go +++ b/op-proposer/proposer/driver.go @@ -429,7 +429,7 @@ func (l *L2OutputSubmitter) updateRequestedProofs() error { } } -func (l *L2OutputSubmitter) generatePendingAggProofs(ctx context.Context) error { +func (l *L2OutputSubmitter) queuePendingAggProofs(ctx context.Context) error { // Get the latest L2OO output from, err := l.l2ooContract.LatestOutputIndex(&bind.CallOpts{Context: ctx}) if err != nil { @@ -790,7 +790,7 @@ func (l *L2OutputSubmitter) loopL2OO(ctx context.Context) { // 3) Determine if any agg proofs are ready to be submitted and queue them up. // This is done by checking if we have contiguous span proofs from the last on chain // output root through at least the submission interval. - err = l.generatePendingAggProofs() + err = l.queuePendingAggProofs() if err != nil { l.Log.Error("failed to generate pending agg proofs", "err", err) break