From 9e4440c3f9f06ed5ea79baa949386f9728bc379a Mon Sep 17 00:00:00 2001 From: Dave Shapiro Date: Thu, 12 Oct 2023 11:41:42 -0500 Subject: [PATCH] adding new action type (#239) --- src/config/enums.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config/enums.sol b/src/config/enums.sol index 2856ee68..8773b31e 100644 --- a/src/config/enums.sol +++ b/src/config/enums.sol @@ -26,5 +26,6 @@ enum ActionType { MintShortIntoAccount, // increase short (debt) position in one subAccount, increase long token directly to another subAccount TransferCollateral, // transfer collateral directly to another subAccount TransferLong, // transfer long directly to another subAccount - TransferShort // transfer short directly to another subAccount + TransferShort, // transfer short directly to another subAccount + BurnShortInAccount // decreases short position in one subAccount, decreases long position in another }