diff --git a/src/funnels/automation/ConduitMover.sol b/src/funnels/automation/ConduitMover.sol index 3c7f1e5a..610bfd4d 100644 --- a/src/funnels/automation/ConduitMover.sol +++ b/src/funnels/automation/ConduitMover.sol @@ -102,7 +102,9 @@ contract ConduitMover { if (from != buffer) { require(ConduitLike(from).withdraw(ilk, gem, cfg.lot) == cfg.lot, "ConduitMover/lot-withdraw-failed"); } - if (to != buffer) ConduitLike(to).deposit(ilk, gem, cfg.lot); + if (to != buffer) { + ConduitLike(to).deposit(ilk, gem, cfg.lot); + } emit Move(from, to, gem, cfg.lot); }