This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Updates needed for substrate #4820 (composite accounts) #834
Closed
Closed
Changes from all commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
2383ba9
Amalgamate pieces of balance module
gavofyork 62023ac
Merge branch 'master' of github.com:paritytech/polkadot
gavofyork e4065cb
Fixes for vesting split
gavofyork f7d05c8
Refactoring for vesting/balances split
gavofyork 372908d
Build fixes
gavofyork f9b2b2f
Remove on_free_balance_zero and some docs.
gavofyork c51f4d7
Indentation.
gavofyork 84ed49c
Merge branch 'gav-split-balanecs-vesting' into gav-upsub
gavofyork 94b9d10
Revert branch
gavofyork d7b44ec
Fix.
gavofyork 4013a30
Update substrate: fixes after CLI refactoring
cecton 830f819
Merge branch 'master' into gav-upsub
rphmeier b5f436a
Reverting removal of exit
cecton 1df7547
Removed too much again
cecton 7916135
Update Cargo.lock
cecton 96a0c87
Cargo.lock
cecton a1f25b4
Update Substrate, ready for #4820
gavofyork bebc910
Merge branch 'gav-upsub' of github.com:paritytech/polkadot into gav-u…
gavofyork 6b05cb4
Fixes
gavofyork bffee5e
Merge remote-tracking branch 'origin/cecton-cli-refactoring-more' int…
bkchr 3441e24
Merge remote-tracking branch 'origin/cecton-cli-refactoring-more' int…
gavofyork 142b9c9
Merge branch 'gav-upsub' of github.com:paritytech/polkadot into gav-u…
gavofyork 09e6236
Update to latest substrate master
bkchr 691c6c3
Fix network tests
bkchr e710b5b
Changes needed for substrate/#4820
gavofyork 7f7ce20
Remove StaticLookup
gavofyork c563e9d
Bump version to 0.7.21
gavofyork ab23e94
rename uses of StorageMap::exists(key) to ::contains_key(key)
apopiak 587a1fd
use substrate PR branch
apopiak e124686
adjust impl_version according to substrate change
apopiak 8ab4509
update Cargo.lock
apopiak 9239d7e
use master branch instead of PR branch
apopiak a616423
Revert "use master branch instead of PR branch"
apopiak cdacb01
Style
gavofyork a068b4a
Merge remote-tracking branch 'origin/master' into gav-composite-account
gavofyork b3f98cd
Merge remote-tracking branch 'origin/apopiak-rename-exists-to-contain…
gavofyork f9e41fb
Fix tests
gavofyork 8586c90
Merge remote-tracking branch 'origin/master' into gav-composite-account
gavofyork 770e0e6
Update lock
gavofyork 3aaaab3
Update to use correct hash
gavofyork 7ed3a51
Bump spec_version for polkadot runtime
jacogr 2355515
Tidying it up.
gavofyork 06f5595
Merge branch 'gav-composite-account' of github.com:paritytech/polkado…
gavofyork 4be0cbc
Merge remote-tracking branch 'origin/master' into gav-composite-account
bkchr 335d0de
*: Ensure GossipEngine is being polled
mxinden 9e1f576
Update to latest Substrate master
bkchr a5c02b6
Merge remote-tracking branch 'origin/master' into gav-composite-account
bkchr ac69c83
Bump spec_version for polkadot runtime
jacogr 15fe7cc
Fix claim w/ vesting logic
shawntabrizi 6c4c166
Make claim tests a bit better
shawntabrizi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ path = "src/main.rs" | |
|
||
[package] | ||
name = "polkadot" | ||
version = "0.7.20" | ||
version = "0.7.21" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
build = "build.rs" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "polkadot-availability-store" | ||
description = "Persistent database for parachain data" | ||
version = "0.7.20" | ||
version = "0.7.21" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-cli" | ||
version = "0.7.20" | ||
version = "0.7.21" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Polkadot node implementation in Rust." | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-collator" | ||
version = "0.7.20" | ||
version = "0.7.21" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Collator node implementation" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-erasure-coding" | ||
version = "0.7.20" | ||
version = "0.7.21" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-network" | ||
version = "0.7.20" | ||
version = "0.7.21" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Polkadot-specific networking protocol" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-parachain" | ||
version = "0.7.20" | ||
version = "0.7.21" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Types and utilities for creating and working with parachains" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-primitives" | ||
version = "0.7.20" | ||
version = "0.7.21" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-rpc" | ||
version = "0.7.20" | ||
version = "0.7.21" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "polkadot-runtime-common" | ||
version = "0.7.20" | ||
version = "0.7.21" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
When you removed this ensure check, I also believe you now made it possible for someone with a vesting schedule to drop the pot to zero by calling this function over and over.
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 have updated the logic and added a test which would have failed if this logic didn't exist.
15fe7cc