Skip to content

Commit

Permalink
update: time delay for txn finality in state update increased to 30 mins
Browse files Browse the repository at this point in the history
  • Loading branch information
mohiiit committed Dec 24, 2024
1 parent 725959e commit 5fa2d81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/settlement-clients/ethereum/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ const Y_LOW_POINT_OFFSET: usize = 14;
const Y_HIGH_POINT_OFFSET: usize = Y_LOW_POINT_OFFSET + 1;

// Ethereum Transaction Finality
const MAX_TX_FINALISATION_ATTEMPTS: usize = 100;
const MAX_TX_FINALISATION_ATTEMPTS: usize = 30;
const REQUIRED_BLOCK_CONFIRMATIONS: u64 = 3;
const TX_WAIT_SLEEP_DELAY_SECS: u64 = 5;
const TX_WAIT_SLEEP_DELAY_SECS: u64 = 60;

lazy_static! {
pub static ref PROJECT_ROOT: PathBuf = PathBuf::from(format!("{}/../../../", env!("CARGO_MANIFEST_DIR")));
Expand Down

0 comments on commit 5fa2d81

Please sign in to comment.