Skip to content

Commit

Permalink
fix: increase validate fee wait time (#1730)
Browse files Browse the repository at this point in the history
Reviewed-by: caglaryucekaya <caglaryucekaya@gmail.com>
  • Loading branch information
shamardy authored Mar 23, 2023
1 parent fba4723 commit c3a4185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mm2src/mm2_main/src/lp_swap/maker_swap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ impl MakerSwap {
{
Ok(_) => break,
Err(err) => {
if attempts >= 3 {
if attempts >= 6 {
return Ok((Some(MakerSwapCommand::Finish), vec![
MakerSwapEvent::TakerFeeValidateFailed(ERRL!("{}", err).into()),
]));
Expand Down

0 comments on commit c3a4185

Please sign in to comment.