Skip to content

Commit

Permalink
style: Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
KirilMihaylov authored and Gancho Manev committed May 16, 2023
1 parent 41c79f9 commit 1549f1a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion contracts/timealarms/src/alarms.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ impl<'r> TimeAlarms<'r> {
impl<'r> TimeAlarmsMut<'r> {
pub fn new(storage: &'r mut dyn Storage) -> Self {
Self {
time_alarms: AlarmsMut::new(storage, ALARMS_NAMESPACE, ALARMS_IDX_NAMESPACE, IN_DELIVERY_NAMESPACE),
time_alarms: AlarmsMut::new(
storage,
ALARMS_NAMESPACE,
ALARMS_IDX_NAMESPACE,
IN_DELIVERY_NAMESPACE,
),
}
}

Expand Down

0 comments on commit 1549f1a

Please sign in to comment.