If no sandwiched swaps, not a sandwich

This commit is contained in:
Luke Van Seters 2021-12-17 11:02:03 -05:00
parent 1943d73021
commit 088c32f52f

View File

@ -48,12 +48,13 @@ def _get_sandwich_starting_with_swap(
and other_swap.token_in_address == front_swap.token_out_address
and other_swap.from_address == sandwicher_address
):
return Sandwich(
block_number=front_swap.block_number,
sandwicher_address=sandwicher_address,
frontrun_swap=front_swap,
backrun_swap=other_swap,
sandwiched_swaps=sandwiched_swaps,
)
if len(sandwiched_swaps) > 0:
return Sandwich(
block_number=front_swap.block_number,
sandwicher_address=sandwicher_address,
frontrun_swap=front_swap,
backrun_swap=other_swap,
sandwiched_swaps=sandwiched_swaps,
)
return None