Skip to content

Commit

Permalink
change: increase threshold from 1 to 10 minutes (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
b-avb authored Oct 21, 2024
1 parent 613cf36 commit b32b8ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/middlewares/is_chain_available.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use web_sys::js_sys::Date;

use crate::hooks::{use_notification::UseNotificationState, use_timestamp::UseTimestampState};

const THRESHOLD: u64 = 1000 * 60;
const THRESHOLD: u64 = 1000 * 60 * 10;
pub fn is_chain_available(
i18: UseI18,
timestamp: UseTimestampState,
Expand Down

0 comments on commit b32b8ad

Please sign in to comment.