Skip to content

Commit

Permalink
update taker time
Browse files Browse the repository at this point in the history
  • Loading branch information
laruh committed Sep 11, 2024
1 parent 0c96992 commit 8f983ec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions mm2src/mm2_main/tests/docker_tests/eth_docker_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1634,7 +1634,7 @@ fn send_and_refund_taker_funding_exceed_pre_approve_timelock_eth() {
#[test]
fn taker_send_approve_and_spend_eth() {
// sepolia test
thread::sleep(Duration::from_secs(90));
thread::sleep(Duration::from_secs(100));
let taker_coin = get_or_create_sepolia_coin(&MM_CTX1, SEPOLIA_TAKER_PRIV, ETH, &eth_sepolia_conf(), false);
let maker_coin = get_or_create_sepolia_coin(&MM_CTX, SEPOLIA_MAKER_PRIV, ETH, &eth_sepolia_conf(), false);

Expand Down Expand Up @@ -1743,7 +1743,7 @@ fn taker_send_approve_and_spend_eth() {
#[test]
fn taker_send_approve_and_spend_erc20() {
// sepolia test
thread::sleep(Duration::from_secs(120));
thread::sleep(Duration::from_secs(130));
let erc20_conf = &sepolia_erc20_dev_conf(&sepolia_erc20_contract_checksum());
let taker_coin = get_or_create_sepolia_coin(&MM_CTX1, SEPOLIA_TAKER_PRIV, ERC20, erc20_conf, true);
let maker_coin = get_or_create_sepolia_coin(&MM_CTX, SEPOLIA_MAKER_PRIV, ERC20, erc20_conf, true);
Expand Down Expand Up @@ -1852,7 +1852,7 @@ fn taker_send_approve_and_spend_erc20() {
#[test]
fn send_and_refund_taker_funding_exceed_payment_timelock_eth() {
// sepolia test
thread::sleep(Duration::from_secs(150));
thread::sleep(Duration::from_secs(160));
let taker_coin = get_or_create_sepolia_coin(&MM_CTX1, SEPOLIA_TAKER_PRIV, ETH, &eth_sepolia_conf(), false);
let maker_coin = get_or_create_sepolia_coin(&MM_CTX, SEPOLIA_MAKER_PRIV, ETH, &eth_sepolia_conf(), false);

Expand Down Expand Up @@ -1935,7 +1935,7 @@ fn send_and_refund_taker_funding_exceed_payment_timelock_eth() {
#[test]
fn send_and_refund_taker_funding_exceed_payment_timelock_erc20() {
// sepolia test
thread::sleep(Duration::from_secs(180));
thread::sleep(Duration::from_secs(190));
let erc20_conf = &sepolia_erc20_dev_conf(&sepolia_erc20_contract_checksum());
let taker_coin = get_or_create_sepolia_coin(&MM_CTX1, SEPOLIA_TAKER_PRIV, ERC20, erc20_conf, true);
let maker_coin = get_or_create_sepolia_coin(&MM_CTX, SEPOLIA_MAKER_PRIV, ERC20, erc20_conf, true);
Expand Down Expand Up @@ -2020,7 +2020,7 @@ fn send_and_refund_taker_funding_exceed_payment_timelock_erc20() {
#[test]
fn send_and_refund_taker_funding_exceed_pre_approve_timelock_erc20() {
// sepolia test
thread::sleep(Duration::from_secs(210));
thread::sleep(Duration::from_secs(220));
let erc20_conf = &sepolia_erc20_dev_conf(&sepolia_erc20_contract_checksum());
let taker_coin = get_or_create_sepolia_coin(&MM_CTX1, SEPOLIA_TAKER_PRIV, ERC20, erc20_conf, true);
let maker_coin = get_or_create_sepolia_coin(&MM_CTX1, SEPOLIA_MAKER_PRIV, ERC20, erc20_conf, true);
Expand Down

0 comments on commit 8f983ec

Please sign in to comment.