Skip to content

Commit 095e87a

Browse files
committed
nuked comment
1 parent 2fc8510 commit 095e87a

File tree

2 files changed

+0
-7
lines changed
  • noir-projects/noir-contracts/contracts/app

2 files changed

+0
-7
lines changed

noir-projects/noir-contracts/contracts/app/amm_contract/src/test/test.nr

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ global AUTHWIT_NONCE: Field = 1;
99
global DEFAULT_AMOUNT_0_MIN: u128 = 0;
1010
global DEFAULT_AMOUNT_1_MIN: u128 = 0;
1111

12-
// Note: Ideally this test would be split into 2 separate test cases - one for order creation and one for order
13-
// fulfillment, with the second test running on the state from the first test. Since this feature is not currently
14-
// supported, combining them into a single comprehensive test is the best approach.
1512
#[test]
1613
unconstrained fn add_liquidity_twice_and_remove_liquidity() {
1714
let (mut env, amm_address, token0_address, token1_address, liquidity_token_address, minter) =

noir-projects/noir-contracts/contracts/app/orderbook_contract/src/test/test.nr

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ global CREATE_ORDER_AUTHWIT_NONCE: Field = 1;
1212
global FULFILL_ORDER_AUTHWIT_NONCE: Field = 2;
1313

1414
/// Checks the full flow of creating an order and fulfilling it.
15-
//
16-
// Note: Ideally this test would be split into 2 separate test cases - one for order creation and one for order
17-
// fulfillment, with the second test running on the state from the first test. Since this feature is not currently
18-
// supported, combining them into a single comprehensive test is the best approach.
1915
#[test]
2016
unconstrained fn full_flow() {
2117
let (mut env, orderbook_address, token0_address, token1_address, minter) = setup();

0 commit comments

Comments
 (0)