Make New Storage Layer Truly Default (#11918)

* with storage layer truly default

* fmt

Co-authored-by: parity-processbot <>
This commit is contained in:
Shawn Tabrizi
2022-07-26 18:49:11 +01:00
committed by GitHub
parent 7bdeb960c3
commit 72522429a7
6 changed files with 9 additions and 41 deletions
@@ -2735,7 +2735,7 @@ mod unbond {
// when: unbonding more than our active: error
assert_noop!(
frame_support::storage::in_storage_layer(|| Pools::unbond(
frame_support::storage::with_storage_layer(|| Pools::unbond(
Origin::signed(10),
10,
5
@@ -2787,7 +2787,7 @@ mod unbond {
// when
CurrentEra::set(2);
assert_noop!(
frame_support::storage::in_storage_layer(|| Pools::unbond(
frame_support::storage::with_storage_layer(|| Pools::unbond(
Origin::signed(20),
20,
4