Skip to content

Commit f3afe83

Browse files
committed
fix: fmt
1 parent 7c1c900 commit f3afe83

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

runtime/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1211,7 +1211,9 @@ mod account_data_migration {
12111211
Ok(d) => {
12121212
ensure!(d.data.free > 0 || d.data.reserved > 0, "account has 0 bal");
12131213
}
1214-
_ => { panic!("account not found") }
1214+
_ => {
1215+
panic!("account not found")
1216+
}
12151217
};
12161218

12171219
// Ensure account provider is >0.

0 commit comments

Comments
 (0)