Skip to content

Commit

Permalink
set maxattestations to safe number
Browse files Browse the repository at this point in the history
  • Loading branch information
pifragile committed Feb 26, 2024
1 parent 89d7d4e commit 77f2ce8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ceremonies/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl dut::Config for TestRuntime {
type MeetupMinSize = MeetupMinSize;
type MeetupNewbieLimitDivider = MeetupNewbieLimitDivider;
type WeightInfo = ();
type MaxAttestations = ConstU32<15>;
type MaxAttestations = ConstU32<25>;
}

// boilerplate
Expand Down
2 changes: 1 addition & 1 deletion test-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ macro_rules! impl_encointer_ceremonies {
type MeetupMinSize = MeetupMinSize;
type MeetupNewbieLimitDivider = MeetupNewbieLimitDivider;
type WeightInfo = ();
type MaxAttestations = ConstU32<15>;
type MaxAttestations = ConstU32<25>;
}
};
}
Expand Down

0 comments on commit 77f2ce8

Please sign in to comment.