-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* vesting mbm * cleanup * update weights * fix feature * fix test * fix test * enable async backing * fix integration tests * zepter * revert spec change * taplo fmt * dapp-staking mbm * weight step method * update weights * skip accounts without locked * next_era_start and block_reward adjusment * fix migration
- Loading branch information
1 parent
f5c99e9
commit 6a6e767
Showing
24 changed files
with
1,132 additions
and
76 deletions.
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// This file is part of Astar. | ||
|
||
// Copyright (C) Stake Technologies Pte.Ltd. | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
// Astar is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Astar is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Astar. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
#![cfg(all(test, not(feature = "runtime-benchmarks")))] | ||
|
||
use crate::test::mock::*; | ||
use crate::{AccountLedger, CurrentEraInfo, EraInfo, Ledger, UnlockingChunk}; | ||
use frame_support::traits::OnRuntimeUpgrade; | ||
|
||
#[test] | ||
fn lazy_migrations() { | ||
ExtBuilder::default().build_and_execute(|| { | ||
Ledger::<Test>::set( | ||
&1, | ||
AccountLedger { | ||
locked: 1000, | ||
unlocking: vec![ | ||
UnlockingChunk { | ||
amount: 100, | ||
unlock_block: 5, | ||
}, | ||
UnlockingChunk { | ||
amount: 100, | ||
unlock_block: 20, | ||
}, | ||
] | ||
.try_into() | ||
.unwrap(), | ||
staked: Default::default(), | ||
staked_future: None, | ||
contract_stake_count: 0, | ||
}, | ||
); | ||
CurrentEraInfo::<Test>::put(EraInfo { | ||
total_locked: 1000, | ||
unlocking: 200, | ||
current_stake_amount: Default::default(), | ||
next_stake_amount: Default::default(), | ||
}); | ||
|
||
// go to block before migration | ||
run_to_block(9); | ||
|
||
// onboard MBMs | ||
AllPalletsWithSystem::on_runtime_upgrade(); | ||
run_to_block(10); | ||
|
||
assert_eq!( | ||
Ledger::<Test>::get(&1), | ||
AccountLedger { | ||
locked: 1000, | ||
unlocking: vec![ | ||
UnlockingChunk { | ||
amount: 100, | ||
unlock_block: 5, // already unlocked | ||
}, | ||
UnlockingChunk { | ||
amount: 100, | ||
unlock_block: 30, // double remaining blocks | ||
}, | ||
] | ||
.try_into() | ||
.unwrap(), | ||
staked: Default::default(), | ||
staked_future: None, | ||
contract_stake_count: 0, | ||
} | ||
); | ||
}) | ||
} |
Oops, something went wrong.