Skip to content

Commit

Permalink
increase system lane gas limit (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 authored Oct 11, 2024
1 parent ced1fbe commit aec86a1
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 @@ -46,7 +46,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 @@ -56,7 +56,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 @@ -74,7 +74,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 aec86a1

Please sign in to comment.