Skip to content

Commit

Permalink
increase system lane gas limit (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 authored Oct 11, 2024
1 parent 513786c commit 05d759a
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 @@ -47,7 +47,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 @@ -57,7 +57,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 @@ -75,7 +75,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 05d759a

Please sign in to comment.