Skip to content

Commit

Permalink
remove CLOSE_PAIR action
Browse files Browse the repository at this point in the history
  • Loading branch information
dianakocsis committed Aug 2, 2024
1 parent 7b4b6ec commit e977b84
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/libraries/Actions.sol
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,10 @@ library Actions {
uint256 constant TAKE_PORTION = 0x16;

uint256 constant CLOSE_CURRENCY = 0x17;
uint256 constant CLOSE_PAIR = 0x18;
uint256 constant CLEAR = 0x19;
uint256 constant SWEEP = 0x20;
uint256 constant CLEAR = 0x18;
uint256 constant SWEEP = 0x19;

// minting/burning 6909s to close deltas
uint256 constant MINT_6909 = 0x21;
uint256 constant BURN_6909 = 0x22;
uint256 constant MINT_6909 = 0x20;
uint256 constant BURN_6909 = 0x21;
}

0 comments on commit e977b84

Please sign in to comment.