Skip to content

Commit 706a959

Browse files
authored
Remove lingering runtime upgrades (#6476)
* Remove lingering runtime upgrades * remove unused warnings * remove tests
1 parent 5a737b8 commit 706a959

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/lib.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -235,17 +235,6 @@ decl_module! {
235235
/// Deposit one of this module's events by using the default implementation.
236236
fn deposit_event() = default;
237237

238-
fn on_runtime_upgrade() -> Weight {
239-
// Utility.Multisigs -> Multisig.Multisigs
240-
use frame_support::migration::{StorageIterator, put_storage_value};
241-
for (key, value) in StorageIterator::<
242-
Multisig<T::BlockNumber, BalanceOf<T>, T::AccountId>
243-
>::new(b"Utility", b"Multisigs").drain() {
244-
put_storage_value(b"Multisig", b"Multisigs", &key, value);
245-
}
246-
1_000_000_000
247-
}
248-
249238
/// Immediately dispatch a multi-signature call using a single approval from the caller.
250239
///
251240
/// The dispatch origin for this call must be _Signed_.

0 commit comments

Comments
 (0)