mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 21:41:12 +00:00
Fix: stash account reaped when ledger.active == ED (#8170)
* do not reap account when active == ed * add tests + refactor
This commit is contained in:
committed by
GitHub
parent
b2f393945a
commit
115dcd81dc
@@ -72,7 +72,7 @@ macro_rules! assert_eq_uvec {
|
||||
macro_rules! __assert_eq_uvec {
|
||||
( $x:expr, $y:expr ) => {
|
||||
$x.iter().for_each(|e| {
|
||||
if !$y.contains(e) { panic!(format!("vectors not equal: {:?} != {:?}", $x, $y)); }
|
||||
if !$y.contains(e) { panic!("vectors not equal: {:?} != {:?}", $x, $y); }
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user