Skip to content

Commit e819b7d

Browse files
committed
disallow manager from being caller
1 parent 0f17b27 commit e819b7d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/AsyncCSMM.t.sol

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ contract AsyncCsmmTest is SetupHook {
6363
function testFuzzAsyncSwapAndFillOrder(AsyncOrder memory order) public {
6464
vm.assume(order.amountIn >= 1);
6565
vm.assume(order.amountIn < 2 ** 128 / 2);
66+
vm.assume(order.owner != address(manager));
67+
vm.assume(order.owner != address(hook));
6668
topUp(order.owner, order.amountIn);
6769
topUp(user2, order.amountIn);
6870
user = order.owner;

0 commit comments

Comments
 (0)