Commit 7549e42 1 parent 4ab2d41 commit 7549e42 Copy full SHA for 7549e42
File tree 2 files changed +1
-2
lines changed
sequencer-client/src/sequencer
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ export class BBNativeRollupProver implements ServerCircuitProver {
153
153
* @param inputs - Inputs to the circuit.
154
154
* @returns The public inputs of the parity circuit.
155
155
*/
156
- @trackSpan ( 'BBNativeRollupProver.getBaseParityProof ' , { [ Attributes . PROTOCOL_CIRCUIT_NAME ] : 'root-parity' } )
156
+ @trackSpan ( 'BBNativeRollupProver.getRootParityProof ' , { [ Attributes . PROTOCOL_CIRCUIT_NAME ] : 'root-parity' } )
157
157
public async getRootParityProof (
158
158
inputs : RootParityInputs ,
159
159
) : Promise < RootParityInput < typeof NESTED_RECURSIVE_PROOF_LENGTH > > {
Original file line number Diff line number Diff line change @@ -261,7 +261,6 @@ export class Sequencer {
261
261
262
262
const numRealTxs = validTxs . length ;
263
263
const pow2 = Math . log2 ( numRealTxs ) ;
264
- // TODO turn this back into a Math.ceil once we can pad blocks to the next-power-of-2 with empty txs
265
264
const totalTxs = 2 ** Math . ceil ( pow2 ) ;
266
265
const blockSize = Math . max ( 2 , totalTxs ) ;
267
266
You can’t perform that action at this time.
0 commit comments