-
Notifications
You must be signed in to change notification settings - Fork 739
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
migrate pallet-offences-benchmarking to benchmark v2 syntax #6300
migrate pallet-offences-benchmarking to benchmark v2 syntax #6300
Conversation
) -> Result<(Vec<IdentificationTuple<T>>, Vec<Offender<T>>), &'static str> { | ||
) -> Result<Vec<IdentificationTuple<T>>, &'static str> { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Offenders
was unused, and it was a private function, so I removed it.
// corresponds to the opaque key id above | ||
const KEY_TYPE_IDS: &'static [KeyTypeId] = &[KeyTypeId([100u8, 117u8, 109u8, 121u8])]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needed to fix genesis integrity check error.
@re-gius review bump :) Edit: Sorry, I didn't see that you added the labels 15 hours ago, so I think this is on your radar. |
bot bench substrate-pallet --features=runtime-benchmarks --pallet=pallet_offences_benchmarking |
@re-gius https://gitlab.parity.io/parity/mirrors/polkadot-sdk/-/jobs/7840290 was started for your command Comment |
@re-gius Command |
bot bench substrate-pallet --features=runtime-benchmarks --pallet=pallet_offences |
@re-gius https://gitlab.parity.io/parity/mirrors/polkadot-sdk/-/jobs/7841389 was started for your command Comment |
@re-gius Command |
3d8da81
/tip small |
The referendum has appeared on Polkassembly. |
…ch#6300) Migrates pallet-offences-benchmarking to benchmark v2 syntax. Part of: * paritytech#6202 --------- Co-authored-by: Giuseppe Re <[email protected]>
Migrates pallet-offences-benchmarking to benchmark v2 syntax.
Part of: