Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
13e9552
Introduce stacked filtering.
gavofyork Jun 6, 2020
d1645cc
Benchmarks
gavofyork Jun 6, 2020
7c06fdc
Remove unneeded crates
gavofyork Jun 6, 2020
ebc8c55
Fix proxy type's permissiveness checks.
gavofyork Jun 6, 2020
705cf68
Repot multisig to make utility stateless.
gavofyork Jun 6, 2020
9896ea8
Repot filter stack impl into macro
gavofyork Jun 6, 2020
39b745a
Fix wasm build
gavofyork Jun 6, 2020
1d65cc0
Tests
gavofyork Jun 6, 2020
0f3afee
Final test.
gavofyork Jun 6, 2020
16883b2
Tests for the macro
gavofyork Jun 6, 2020
55aa221
Fix test
gavofyork Jun 7, 2020
a588347
Line width
gavofyork Jun 7, 2020
09f5e9c
Merge remote-tracking branch 'origin/master' into gav-filter-stack
gavofyork Jun 7, 2020
6432f1e
Fix
gavofyork Jun 7, 2020
d8b7bc8
Update frame/multisig/src/benchmarking.rs
gavofyork Jun 7, 2020
284a2a9
Update primitives/std/with_std.rs
gavofyork Jun 7, 2020
a789ba2
Grumble
gavofyork Jun 7, 2020
e377032
Update frame/support/src/traits.rs
gavofyork Jun 7, 2020
f9cbaa1
Update frame/support/src/traits.rs
gavofyork Jun 7, 2020
c512330
Update frame/support/src/traits.rs
gavofyork Jun 7, 2020
b167261
Merge remote-tracking branch 'origin/gav-filter-stack' into gav-filte…
gavofyork Jun 7, 2020
b643318
Update frame/support/src/traits.rs
gavofyork Jun 7, 2020
23530fb
Update frame/support/src/traits.rs
gavofyork Jun 7, 2020
3e9dfbc
Update frame/multisig/src/tests.rs
gavofyork Jun 7, 2020
8928f29
Update frame/multisig/src/tests.rs
gavofyork Jun 7, 2020
a19a663
Grumble
gavofyork Jun 7, 2020
3e1f6a0
Merge remote-tracking branch 'origin/gav-filter-stack' into gav-filte…
gavofyork Jun 7, 2020
8ffd728
Migration
gavofyork Jun 8, 2020
ba9281c
Grumble
gavofyork Jun 8, 2020
2c5afd7
Comments
gavofyork Jun 8, 2020
6ca10d3
Migration
gavofyork Jun 8, 2020
936804f
Fix
gavofyork Jun 8, 2020
41b0ebe
Fix
gavofyork Jun 8, 2020
738b174
Line width
gavofyork Jun 8, 2020
a5b9aa1
Allow unused
gavofyork Jun 8, 2020
08a8149
Update frame/multisig/src/lib.rs
gavofyork Jun 8, 2020
69965e9
Fix up grumble.
gavofyork Jun 8, 2020
73e1990
Remove Utility constraint in NonTransfer
gavofyork Jun 8, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Line width
  • Loading branch information
gavofyork committed Jun 8, 2020
commit 738b1748d5bca836733d741a407d103e9f6f497c
4 changes: 3 additions & 1 deletion frame/multisig/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,9 @@ decl_module! {
fn on_runtime_upgrade() -> Weight {
// Utility.Multisigs -> Multisig.Multisigs
use frame_support::migration::{StorageIterator, put_storage_value};
for (key, value) in StorageIterator::<Multisig<T::BlockNumber, BalanceOf<T>, T::AccountId>>::new(b"Utility", b"Multisigs").drain() {
for (key, value) in StorageIterator::<
Multisig<T::BlockNumber, BalanceOf<T>, T::AccountId>
>::new(b"Utility", b"Multisigs").drain() {
put_storage_value(b"Multisig", b"Multisigs", &key, value);
}
1_000_000_000
Expand Down