diff --git a/packages/taiko-client/proposer/proposer.go b/packages/taiko-client/proposer/proposer.go index c4d7fd5987..fe219b61e3 100644 --- a/packages/taiko-client/proposer/proposer.go +++ b/packages/taiko-client/proposer/proposer.go @@ -358,11 +358,6 @@ func (p *Proposer) ProposeTxList( parentMetaHash = parent.MetaHash } - if p.isPreconfirmationsEnabled() { - l1StateBlockNumber = parent.L1StateBlockNumber + 1 - timestamp = parent.Timestamp + 12 - } - txCandidate, err := p.txBuilder.Build( ctx, p.tierFees, @@ -448,10 +443,6 @@ func (p *Proposer) initTierFees() error { return nil } -func (p *Proposer) isPreconfirmationsEnabled() bool { - return len(p.PreconfirmationRPC) > 0 -} - // getParentOfLatestProposedBlock returns the parent block of the latest proposed block in protocol func (p *Proposer) getParentOfLatestProposedBlock( ctx context.Context,