Skip to content

Commit

Permalink
fix: import
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Feb 1, 2024
1 parent d704082 commit 9ebcb17
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ekoke/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ mod spend_allowance;
#[cfg(test)]
mod test_utils;

use std::time::Duration;

use candid::{Nat, Principal};
use did::ekoke::{
AllowanceError, BalanceError, EkokeError, EkokeInitData, EkokeResult, LiquidityPoolAccounts,
Expand Down Expand Up @@ -98,7 +96,7 @@ impl EkokeCanister {

#[cfg(target_family = "wasm")]
let fetch_gas_price_timer_interval =
crate::constants::THREE_HOURS + Duration::from_secs(60);
crate::constants::THREE_HOURS + std::time::Duration::from_secs(60);

#[cfg(target_family = "wasm")]
ic_cdk_timers::set_timer_interval(
Expand Down

0 comments on commit 9ebcb17

Please sign in to comment.