Skip to content

Commit

Permalink
fix: Use alloc BinaryHeap
Browse files Browse the repository at this point in the history
  • Loading branch information
aidan46 committed Jul 29, 2024
1 parent 8fd50b6 commit b427f25
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pallets/storage-provider/src/deadline/assignment.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
extern crate alloc;

use core::cmp::Ordering;

use scale_info::prelude::{collections::BinaryHeap, vec, vec::Vec};
use alloc::collections::BinaryHeap;
use scale_info::prelude::{vec, vec::Vec};

use crate::{
deadline::{Deadline, DeadlineError},
Expand Down

0 comments on commit b427f25

Please sign in to comment.