mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 10:27:59 +00:00
FRAME: Fix the Referenda confirming alarm (#13704)
* Fix the Referenda confirming alarm
* Add minimal regression test
This fails on 40e1704e1c since the
downwards rounding voids the curve delay.
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
---------
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
This commit is contained in:
@@ -286,6 +286,24 @@ fn alarm_interval_works() {
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn decision_time_is_correct() {
|
||||
new_test_ext().execute_with(|| {
|
||||
let decision_time = |since: u64| {
|
||||
Pallet::<Test>::decision_time(
|
||||
&DecidingStatus { since: since.into(), confirming: None },
|
||||
&Tally { ayes: 100, nays: 5 },
|
||||
TestTracksInfo::tracks()[0].0,
|
||||
&TestTracksInfo::tracks()[0].1,
|
||||
)
|
||||
};
|
||||
|
||||
for i in 0u64..=100 {
|
||||
assert!(decision_time(i) > i, "The decision time should be delayed by the curve");
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn auto_timeout_should_happen_with_nothing_but_submit() {
|
||||
new_test_ext().execute_with(|| {
|
||||
|
||||
Reference in New Issue
Block a user