Skip to content

Commit

Permalink
fix(group): increase group metadata maximum length (#1606)
Browse files Browse the repository at this point in the history
  • Loading branch information
zale144 authored Dec 4, 2024
1 parent e26b17e commit 8441465
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions app/keepers/keepers.go
Original file line number Diff line number Diff line change
Expand Up @@ -383,10 +383,8 @@ func (a *AppKeepers) InitKeepers(
a.SequencerKeeper.SetUnbondBlockers(a.RollappKeeper, a.LightClientKeeper)
a.SequencerKeeper.SetHooks(sequencermoduletypes.MultiHooks{rollappmodulekeeper.SequencerHooks{Keeper: a.RollappKeeper}})

groupConfig := grouptypes.Config{
MaxExecutionPeriod: 0,
MaxMetadataLen: 0,
}
groupConfig := grouptypes.DefaultConfig()
groupConfig.MaxMetadataLen = 2500

a.GroupKeeper = groupkeeper.NewKeeper(
a.keys[grouptypes.StoreKey],
Expand Down

0 comments on commit 8441465

Please sign in to comment.