Skip to content

Commit

Permalink
increase system lane gas limit (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 authored Oct 11, 2024
1 parent 61c5c01 commit e324233
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/blocksdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func setupBlockSDK(
Logger: app.Logger(),
TxEncoder: app.txConfig.TxEncoder(),
TxDecoder: app.txConfig.TxDecoder(),
MaxBlockSpace: math.LegacyMustNewDecFromStr("0.01"),
MaxBlockSpace: math.LegacyMustNewDecFromStr("0.1"),
MaxTxs: 1,
SignerExtractor: signerExtractor,
}, opchildlanes.SystemLaneMatchHandler())
Expand All @@ -51,7 +51,7 @@ func setupBlockSDK(
Logger: app.Logger(),
TxEncoder: app.txConfig.TxEncoder(),
TxDecoder: app.txConfig.TxDecoder(),
MaxBlockSpace: math.LegacyMustNewDecFromStr("0.09"),
MaxBlockSpace: math.LegacyMustNewDecFromStr("0.1"),
MaxTxs: 100,
SignerExtractor: signerExtractor,
}, factory, factory.MatchHandler())
Expand All @@ -69,7 +69,7 @@ func setupBlockSDK(
Logger: app.Logger(),
TxEncoder: app.txConfig.TxEncoder(),
TxDecoder: app.txConfig.TxDecoder(),
MaxBlockSpace: math.LegacyMustNewDecFromStr("0.8"),
MaxBlockSpace: math.LegacyMustNewDecFromStr("0.7"),
MaxTxs: mempoolMaxTxs,
SignerExtractor: signerExtractor,
})
Expand Down

0 comments on commit e324233

Please sign in to comment.