Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
davidterpay committed Oct 12, 2023
1 parent e61327a commit 504dcaa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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)

Expand Down

0 comments on commit 504dcaa

Please sign in to comment.