Skip to content

Commit

Permalink
chore: indent
Browse files Browse the repository at this point in the history
  • Loading branch information
jakekidd committed Jul 1, 2024
1 parent 5be2adb commit fef29dd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/contracts/QWManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,13 @@ contract QWManager is IQWManager, Ownable {
protocols[batch.protocol] = protocol;

// Emit deposit event.
emit ProtocolDeposit(block.timestamp, batch.protocol, batch.amount, previousAmount, previousAmount + assetAmountReceived);
emit ProtocolDeposit(
block.timestamp,
batch.protocol,
batch.amount,
previousAmount,
previousAmount + assetAmountReceived
);
}
}

Expand Down

0 comments on commit fef29dd

Please sign in to comment.