-
Notifications
You must be signed in to change notification settings - Fork 696
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
remove usage of libsecp256k1 for secp256k1 in claims pallet #5841
base: master
Are you sure you want to change the base?
Conversation
"sp-core/std", | ||
"sp-inherents/std", | ||
"sp-io/std", | ||
"sp-npos-elections/std", | ||
"sp-runtime/std", | ||
"sp-session/std", | ||
"sp-staking/std", | ||
"xcm-builder/std", | ||
"xcm-executor/std", | ||
"xcm/std", | ||
] | ||
runtime-benchmarks = [ | ||
"frame-benchmarking/runtime-benchmarks", | ||
"frame-election-provider-support/runtime-benchmarks", | ||
"frame-support/runtime-benchmarks", | ||
"frame-system/runtime-benchmarks", | ||
"libsecp256k1/hmac", | ||
"libsecp256k1/static-context", | ||
"pallet-asset-rate/runtime-benchmarks", | ||
"pallet-babe/runtime-benchmarks", | ||
"pallet-balances/runtime-benchmarks", | ||
"pallet-broker/runtime-benchmarks", | ||
"pallet-election-provider-multi-phase/runtime-benchmarks", | ||
"pallet-fast-unstake/runtime-benchmarks", | ||
"pallet-identity/runtime-benchmarks", | ||
"pallet-staking/runtime-benchmarks", | ||
"pallet-timestamp/runtime-benchmarks", | ||
"pallet-treasury/runtime-benchmarks", | ||
"pallet-vesting/runtime-benchmarks", | ||
"polkadot-primitives/runtime-benchmarks", | ||
"polkadot-runtime-parachains/runtime-benchmarks", | ||
"sp-runtime/runtime-benchmarks", | ||
"sp-staking/runtime-benchmarks", | ||
"xcm-builder/runtime-benchmarks", | ||
"xcm-executor/runtime-benchmarks", | ||
"frame-benchmarking/runtime-benchmarks", | ||
"frame-election-provider-support/runtime-benchmarks", | ||
"frame-support/runtime-benchmarks", | ||
"frame-system/runtime-benchmarks", | ||
"libsecp256k1/hmac", | ||
"libsecp256k1/static-context", | ||
"pallet-asset-rate/runtime-benchmarks", | ||
"pallet-babe/runtime-benchmarks", | ||
"pallet-balances/runtime-benchmarks", | ||
"pallet-broker/runtime-benchmarks", | ||
"pallet-election-provider-multi-phase/runtime-benchmarks", | ||
"pallet-fast-unstake/runtime-benchmarks", | ||
"pallet-identity/runtime-benchmarks", | ||
"pallet-staking/runtime-benchmarks", | ||
"pallet-timestamp/runtime-benchmarks", | ||
"pallet-treasury/runtime-benchmarks", | ||
"pallet-vesting/runtime-benchmarks", | ||
"polkadot-primitives/runtime-benchmarks", | ||
"polkadot-runtime-parachains/runtime-benchmarks", | ||
"sp-runtime/runtime-benchmarks", | ||
"sp-staking/runtime-benchmarks", | ||
"xcm-builder/runtime-benchmarks", | ||
"xcm-executor/runtime-benchmarks", | ||
] | ||
try-runtime = [ | ||
"frame-election-provider-support/try-runtime", | ||
"frame-support-test/try-runtime", | ||
"frame-support/try-runtime", | ||
"frame-system/try-runtime", | ||
"pallet-asset-rate/try-runtime", | ||
"pallet-authorship/try-runtime", | ||
"pallet-babe?/try-runtime", | ||
"pallet-balances/try-runtime", | ||
"pallet-broker/try-runtime", | ||
"pallet-election-provider-multi-phase/try-runtime", | ||
"pallet-fast-unstake/try-runtime", | ||
"pallet-identity/try-runtime", | ||
"pallet-session/try-runtime", | ||
"pallet-staking/try-runtime", | ||
"pallet-timestamp/try-runtime", | ||
"pallet-transaction-payment/try-runtime", | ||
"pallet-treasury/try-runtime", | ||
"pallet-vesting/try-runtime", | ||
"polkadot-runtime-parachains/try-runtime", | ||
"sp-runtime/try-runtime", | ||
"frame-election-provider-support/try-runtime", | ||
"frame-support-test/try-runtime", | ||
"frame-support/try-runtime", | ||
"frame-system/try-runtime", | ||
"pallet-asset-rate/try-runtime", | ||
"pallet-authorship/try-runtime", | ||
"pallet-babe?/try-runtime", | ||
"pallet-balances/try-runtime", | ||
"pallet-broker/try-runtime", | ||
"pallet-election-provider-multi-phase/try-runtime", | ||
"pallet-fast-unstake/try-runtime", | ||
"pallet-identity/try-runtime", | ||
"pallet-session/try-runtime", | ||
"pallet-staking/try-runtime", | ||
"pallet-timestamp/try-runtime", | ||
"pallet-transaction-payment/try-runtime", | ||
"pallet-treasury/try-runtime", | ||
"pallet-vesting/try-runtime", | ||
"polkadot-runtime-parachains/try-runtime", | ||
"sp-runtime/try-runtime", |
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.
I will fix this, probably my editor did something, sorry
comes directly from |
actually, I am not sure if the whole |
b121b06
to
f5efea0
Compare
You probably need to use |
@bkchr sorry if I don't follow, or maybe you are referring to something inside |
Description
removing the usage of
libsecp256k1
from claims pallet as we have moved already to usesecp256k1
.Context here: #5840.
Integration
I don't think it requires any integration.
Review Notes
mainly a dependency check, just make sure it behaves in the same way as before.
Checklist
T
required)You can remove the "Checklist" section once all have been checked. Thank you for your contribution!