-
Notifications
You must be signed in to change notification settings - Fork 688
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
[NPoS] Fix for Reward Deficit in the pool #1255
Changes from 98 commits
7429f0b
fc135d7
a580bc1
aace388
66b593d
56cafc4
767cc3a
626f544
c4c7e96
a1a6d3e
bda10a8
60895d0
86f0cc1
0423b0d
2b89df6
d3ba197
b14a908
5d37b81
3d4089c
79edd91
daf6141
c08d14d
8e484a8
b5433ff
b1a3223
5bec497
25f30b8
d5565d3
23926b7
c292021
d129363
3e4576f
37161ee
a27e24e
425a72d
7520e04
a317ef9
c725bbe
5e56b1a
1be427e
2f31a4c
43d7a8c
433bc9d
c6f1b9f
7f2ae6e
024210b
3ff561f
329df04
5fb02e7
301c438
cbc1d0d
1089fe8
15898c3
eae53d5
f5d911a
675e7da
f3e8a4f
8a3891e
5848428
84b6246
4d34b59
c5fc61d
22fd5de
b535954
4a3387b
36a87a4
de12c8f
138ecb2
6a3bfc3
a1c4970
29465b1
05592c7
b147cfe
8bfef28
e705898
b0202e2
05f4bd8
b0c00fe
d432fba
d960582
d3d8ef4
bb00d8d
d4cd942
51a44c7
9b1042e
d54f029
14d4530
ca17f83
88c8959
3af90e9
4303bb5
809236e
e538a0f
ba9e53c
caac4e1
d939a82
c138e17
34541b2
5628881
d20138a
7de37d3
7969fdf
1e993eb
a15af2b
58612c3
04f89b7
be4a86c
f1425c3
dd1ad02
0395a4c
7b40492
9eee4f6
7ea6b34
6bb9425
8d4361a
5f072c5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -600,4 +600,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo | |
.saturating_add(T::DbWeight::get().reads(4)) | ||
.saturating_add(T::DbWeight::get().writes(2)) | ||
} | ||
|
||
fn adjust_ed_deposit() -> Weight { | ||
Weight::default() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Need to run the bench bot? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bench bot is not working anymore since kusama and polkadot runtime are not supposed to be used from Polkadot-sdk. I need to leave a placeholder for the code to compile but make sure this is benched in the fellowship runtime pr? |
||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -598,4 +598,8 @@ impl<T: frame_system::Config> pallet_nomination_pools::WeightInfo for WeightInfo | |
.saturating_add(T::DbWeight::get().reads(4)) | ||
.saturating_add(T::DbWeight::get().writes(2)) | ||
} | ||
|
||
fn adjust_ed_deposit() -> Weight { | ||
Weight::default() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe not that relevant anymore because the runtime configs come from the fellowship repo, but it would be great to run the bench bot, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Its not working anymore :(. I think these needs to be benched now in fellowship PRs and here we make the minimal change to compile everything. Hopefully we get rid of kusama and polkadot runtimes from this repository soon. |
||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The runtime changes need to be made in the fellowship repo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possibly this can be removed but do you know how is this going to really work? We will still need to make minimal changes to the runtimes for it to compile right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kusama and Polkadot runtimes have been removed from
polkadot-sdk
nowThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you mean, its still there as much as I can see.