Skip to content

Commit

Permalink
fix gas limit consts for watcher; swap_watcher_tests with eth erc20 a…
Browse files Browse the repository at this point in the history
…re okay
  • Loading branch information
dimxy committed Mar 23, 2024
1 parent 25d80f4 commit 431c5ce
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions mm2src/coins/eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3705,7 +3705,7 @@ impl EthCoin {
0.into(),
Action::Call(swap_contract_address),
data,
U256::from(swap_gas::ERC20_SENDER_REFUND),
U256::from(swap_gas::ETH_RECEIVER_SPEND),
)
}),
)
Expand Down Expand Up @@ -3753,7 +3753,7 @@ impl EthCoin {
0.into(),
Action::Call(swap_contract_address),
data,
U256::from(swap_gas::ETH_RECEIVER_SPEND),
U256::from(swap_gas::ERC20_RECEIVER_SPEND),
)
}),
)
Expand Down Expand Up @@ -3827,7 +3827,7 @@ impl EthCoin {
0.into(),
Action::Call(swap_contract_address),
data,
U256::from(swap_gas::ERC20_RECEIVER_SPEND),
U256::from(swap_gas::ETH_SENDER_REFUND),
)
}),
)
Expand Down Expand Up @@ -3878,7 +3878,7 @@ impl EthCoin {
0.into(),
Action::Call(swap_contract_address),
data,
U256::from(swap_gas::ETH_SENDER_REFUND),
U256::from(swap_gas::ERC20_SENDER_REFUND),
)
}),
)
Expand Down Expand Up @@ -3948,7 +3948,7 @@ impl EthCoin {
0.into(),
Action::Call(swap_contract_address),
data,
U256::from(swap_gas::ERC20_SENDER_REFUND),
U256::from(swap_gas::ETH_RECEIVER_SPEND),
)
}),
)
Expand Down Expand Up @@ -4000,7 +4000,7 @@ impl EthCoin {
0.into(),
Action::Call(swap_contract_address),
data,
U256::from(swap_gas::ETH_RECEIVER_SPEND),
U256::from(swap_gas::ERC20_RECEIVER_SPEND),
)
}),
)
Expand Down Expand Up @@ -4071,7 +4071,7 @@ impl EthCoin {
0.into(),
Action::Call(swap_contract_address),
data,
U256::from(swap_gas::ERC20_RECEIVER_SPEND),
U256::from(swap_gas::ETH_SENDER_REFUND),
)
}),
)
Expand Down Expand Up @@ -4123,7 +4123,7 @@ impl EthCoin {
0.into(),
Action::Call(swap_contract_address),
data,
U256::from(swap_gas::ETH_SENDER_REFUND),
U256::from(swap_gas::ERC20_SENDER_REFUND),
)
}),
)
Expand Down

0 comments on commit 431c5ce

Please sign in to comment.