Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FRAME Core] remove unnecessary overrides while using derive_impl for frame_system #3317

Merged
merged 60 commits into from
Feb 19, 2024
Merged
Changes from 1 commit
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
85f05a0
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
f09b699
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
e80290b
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
8edc003
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
7f60211
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
dbd68b7
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
8970e67
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
7e1f712
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
1d78113
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
7d8a201
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
ec8df66
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
85a03db
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
b16147e
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
5b257f8
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
776a366
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
2a9e553
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
979a5e8
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
dcc39fe
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
e4d14c4
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
22c1009
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
7998cf5
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
8d79e50
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
9b8fead
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
9990098
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
10a615b
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
86ec57d
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
4fe2797
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
87db743
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
8b50688
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
aab09d6
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
493669c
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
c7c7e87
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
5049726
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
b6cec53
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
a66c1c9
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
0ddc58e
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
a7ef555
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
9f7a041
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
358dc22
cleaning impl frame_system::Config for Test
Gilt0 Feb 13, 2024
bd2ce03
cleaning impl frame_system::Config for Test
Gilt0 Feb 14, 2024
8e4e784
cleaning impl frame_system::Config for Test
Gilt0 Feb 14, 2024
fd64652
cleaning impl frame_system::Config for Test
Gilt0 Feb 14, 2024
91cd636
cleaning impl frame_system::Config for Test
Gilt0 Feb 14, 2024
9d93479
cleaning impl frame_system::Config for Test
Gilt0 Feb 14, 2024
e8a44b1
cleaning impl frame_system::Config for Test
Gilt0 Feb 14, 2024
3551f7f
cleaning impl frame_system::Config for Test
Gilt0 Feb 14, 2024
d9a1be8
cleaning impl frame_system::Config for Test
Gilt0 Feb 14, 2024
5df22cf
cleaning impl frame_system::Config for Test
Gilt0 Feb 14, 2024
93a76d1
cleaning impl frame_system::Config for Test
Gilt0 Feb 14, 2024
d1b15b1
cleaning impl frame_system::Config for Test
Gilt0 Feb 14, 2024
fcd218b
fixing git actions
Gilt0 Feb 14, 2024
df4d4a1
Merge branch 'master' into issue-3237
Gilt0 Feb 14, 2024
2a0d20a
fixing git actions
Gilt0 Feb 14, 2024
2cb4010
fixing git actions
Gilt0 Feb 14, 2024
653c80e
fixing action test-linux-stable
Gilt0 Feb 14, 2024
c63b46b
Fixing actions - reverting change
Gilt0 Feb 14, 2024
db32489
keeping changes as it did not resolve the error
Gilt0 Feb 14, 2024
f25c735
".git/.scripts/commands/fmt/fmt.sh"
Feb 17, 2024
8ae44c6
Merge branch 'master' into issue-3237
codekitz Feb 17, 2024
9798646
Merge branch 'master' into issue-3237
codekitz Feb 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixing git actions
  • Loading branch information
Gilt0 committed Feb 14, 2024
commit 2cb401078cceab9ff096f77902b5176a8da79a44
2 changes: 1 addition & 1 deletion substrate/frame/system/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use crate::{self as frame_system, *};
use frame_support::{
derive_impl, parameter_types,
};
use sp_runtime::BuildStorage, Perbill;
use sp_runtime::{BuildStorage, Perbill};

type Block = mocking::MockBlock<Test>;

Expand Down
Loading