This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Introduce stacked filtering #6273
Merged
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
13e9552
Introduce stacked filtering.
gavofyork d1645cc
Benchmarks
gavofyork 7c06fdc
Remove unneeded crates
gavofyork ebc8c55
Fix proxy type's permissiveness checks.
gavofyork 705cf68
Repot multisig to make utility stateless.
gavofyork 9896ea8
Repot filter stack impl into macro
gavofyork 39b745a
Fix wasm build
gavofyork 1d65cc0
Tests
gavofyork 0f3afee
Final test.
gavofyork 16883b2
Tests for the macro
gavofyork 55aa221
Fix test
gavofyork a588347
Line width
gavofyork 09f5e9c
Merge remote-tracking branch 'origin/master' into gav-filter-stack
gavofyork 6432f1e
Fix
gavofyork d8b7bc8
Update frame/multisig/src/benchmarking.rs
gavofyork 284a2a9
Update primitives/std/with_std.rs
gavofyork a789ba2
Grumble
gavofyork e377032
Update frame/support/src/traits.rs
gavofyork f9cbaa1
Update frame/support/src/traits.rs
gavofyork c512330
Update frame/support/src/traits.rs
gavofyork b167261
Merge remote-tracking branch 'origin/gav-filter-stack' into gav-filte…
gavofyork b643318
Update frame/support/src/traits.rs
gavofyork 23530fb
Update frame/support/src/traits.rs
gavofyork 3e9dfbc
Update frame/multisig/src/tests.rs
gavofyork 8928f29
Update frame/multisig/src/tests.rs
gavofyork a19a663
Grumble
gavofyork 3e1f6a0
Merge remote-tracking branch 'origin/gav-filter-stack' into gav-filte…
gavofyork 8ffd728
Migration
gavofyork ba9281c
Grumble
gavofyork 2c5afd7
Comments
gavofyork 6ca10d3
Migration
gavofyork 936804f
Fix
gavofyork 41b0ebe
Fix
gavofyork 738b174
Line width
gavofyork a5b9aa1
Allow unused
gavofyork 08a8149
Update frame/multisig/src/lib.rs
gavofyork 69965e9
Fix up grumble.
gavofyork 73e1990
Remove Utility constraint in NonTransfer
gavofyork 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| [package] | ||
| name = "pallet-multisig" | ||
| version = "2.0.0-rc2" | ||
| authors = ["Parity Technologies <[email protected]>"] | ||
| edition = "2018" | ||
| license = "Apache-2.0" | ||
| homepage = "https://substrate.dev" | ||
| repository = "https://github.com/paritytech/substrate/" | ||
| description = "FRAME multi-signature dispatch pallet" | ||
|
|
||
| [package.metadata.docs.rs] | ||
| targets = ["x86_64-unknown-linux-gnu"] | ||
|
|
||
| [dependencies] | ||
| serde = { version = "1.0.101", optional = true } | ||
| codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false } | ||
| frame-support = { version = "2.0.0-rc2", default-features = false, path = "../support" } | ||
| frame-system = { version = "2.0.0-rc2", default-features = false, path = "../system" } | ||
| sp-core = { version = "2.0.0-rc2", default-features = false, path = "../../primitives/core" } | ||
| sp-runtime = { version = "2.0.0-rc2", default-features = false, path = "../../primitives/runtime" } | ||
| sp-std = { version = "2.0.0-rc2", default-features = false, path = "../../primitives/std" } | ||
| sp-io = { version = "2.0.0-rc2", default-features = false, path = "../../primitives/io" } | ||
|
|
||
| frame-benchmarking = { version = "2.0.0-rc2", default-features = false, path = "../benchmarking", optional = true } | ||
|
|
||
| [dev-dependencies] | ||
| sp-core = { version = "2.0.0-rc2", path = "../../primitives/core" } | ||
| pallet-balances = { version = "2.0.0-rc2", path = "../balances" } | ||
|
|
||
| [features] | ||
| default = ["std"] | ||
| std = [ | ||
| "serde", | ||
| "codec/std", | ||
| "sp-runtime/std", | ||
| "frame-support/std", | ||
| "frame-system/std", | ||
| "sp-io/std", | ||
| "sp-std/std" | ||
| ] | ||
| runtime-benchmarks = [ | ||
| "frame-benchmarking", | ||
| "frame-support/runtime-benchmarks", | ||
| ] |
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.
Uh oh!
There was an error while loading. Please reload this page.