-
Notifications
You must be signed in to change notification settings - Fork 115
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
Configurable vesting pallet #4216
Configurable vesting pallet #4216
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Ignored Deployment
|
@@ -62,7 +63,7 @@ pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git | |||
pallet-balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '6cbe1772bf258793fa9845daa8f43ea0cadee596'} | |||
pallet-im-online = { package = 'pallet-im-online', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '6cbe1772bf258793fa9845daa8f43ea0cadee596'} | |||
substrate-utility = { package = 'pallet-utility', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '6cbe1772bf258793fa9845daa8f43ea0cadee596'} | |||
pallet-vesting = { package = 'pallet-vesting', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '6cbe1772bf258793fa9845daa8f43ea0cadee596'} | |||
pallet-vesting = { package = 'pallet-vesting', default-features = false, git = 'https://github.com/Lezek123/substrate', rev = '0f2db1b409af534f45aa2b211e5c0c1f96c89ed0' } |
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.
Added issue to make sure we don't forget to stop using this: #4218
runtime/Cargo.toml
Outdated
@@ -17,6 +17,7 @@ scale-info = { version = "2.1.1", default-features = false, features = ["derive" | |||
smallvec = "1.6.0" | |||
log = { version = "0.4.17", default-features = false } | |||
static_assertions = "1.1.0" | |||
hashbrown = "^0.12.3" |
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.
What is this for?
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.
It's a leftover from one of the fixes I applied when trying to make the dependencies work together (cargo was failing to resolve hashbrown
to a correct version), seems like it's no longer needed, removed in 0aa09f9
Addresses #4200 and #4201
WithdrawalReasons
configurablepallet_vesting
dependency is currently pointing to a commit from the forked substrate repository (namely Lezek123/substrate@0f2db1b). Once the PR is merged to upstream we can make it point directly to Substrate repository.