diff --git a/tests/app/app.go b/tests/app/app.go index 8949ba6e..2d5cf882 100644 --- a/tests/app/app.go +++ b/tests/app/app.go @@ -268,9 +268,9 @@ func New( Logger: app.Logger(), TxEncoder: app.txConfig.TxEncoder(), TxDecoder: app.txConfig.TxDecoder(), - MaxBlockSpace: math.LegacyMustNewDecFromStr("0.2"), // This means the lane has no limit on block space. + MaxBlockSpace: math.LegacyMustNewDecFromStr("0.2"), SignerExtractor: signer_extraction.NewDefaultAdapter(), - MaxTxs: 0, // This means the lane has no limit on the number of transactions it can store. + MaxTxs: 1000, } mevLane := mev.NewMEVLane( mevConfig, @@ -284,7 +284,7 @@ func New( TxDecoder: app.txConfig.TxDecoder(), MaxBlockSpace: math.LegacyMustNewDecFromStr("0.2"), SignerExtractor: signer_extraction.NewDefaultAdapter(), - MaxTxs: 0, + MaxTxs: 1000, } freeLane := free.NewFreeLane( freeConfig, @@ -299,7 +299,7 @@ func New( TxDecoder: app.txConfig.TxDecoder(), MaxBlockSpace: math.LegacyMustNewDecFromStr("0.6"), SignerExtractor: signer_extraction.NewDefaultAdapter(), - MaxTxs: 0, + MaxTxs: 1000, } defaultLane := defaultlane.NewDefaultLane(defaultConfig)