@@ -794,7 +794,7 @@ contract EntropyTest is Test, EntropyTestUtils, EntropyEvents, EntropyEventsV2 {
794794 vm.roll (1234 );
795795 vm.deal (user1, fee);
796796 vm.startPrank (user1);
797- vm.expectEmit (false , false , false , true , address (random));
797+ vm.expectEmit (true , true , true , true , address (random));
798798 emit RequestedWithCallback (
799799 provider1,
800800 user1,
@@ -819,7 +819,7 @@ contract EntropyTest is Test, EntropyTestUtils, EntropyEvents, EntropyEventsV2 {
819819 isRequestWithCallback: true
820820 })
821821 );
822- vm.expectEmit (false , false , false , true , address (random));
822+ vm.expectEmit (true , true , true , true , address (random));
823823 emit EntropyEventsV2.Requested (
824824 provider1,
825825 user1,
@@ -867,7 +867,7 @@ contract EntropyTest is Test, EntropyTestUtils, EntropyEvents, EntropyEventsV2 {
867867 assignedSequenceNumber
868868 );
869869
870- vm.expectEmit (false , false , false , true , address (random));
870+ vm.expectEmit (true , true , true , true , address (random));
871871 emit RevealedWithCallback (
872872 EntropyStructConverter.toV1Request (req),
873873 userRandomNumber,
@@ -935,7 +935,7 @@ contract EntropyTest is Test, EntropyTestUtils, EntropyEvents, EntropyEventsV2 {
935935 assignedSequenceNumber
936936 );
937937
938- vm.expectEmit (false , false , false , true , address (random));
938+ vm.expectEmit (true , true , true , true , address (random));
939939 emit RevealedWithCallback (
940940 EntropyStructConverter.toV1Request (req),
941941 userRandomNumber,
@@ -1042,7 +1042,7 @@ contract EntropyTest is Test, EntropyTestUtils, EntropyEvents, EntropyEventsV2 {
10421042 // Verify the gas limit was set correctly
10431043 assertEq (req.gasLimit10k, 10 );
10441044
1045- vm.expectEmit (false , false , false , true , address (random));
1045+ vm.expectEmit (true , true , true , true , address (random));
10461046 emit RevealedWithCallback (
10471047 EntropyStructConverter.toV1Request (req),
10481048 userRandomNumber,
@@ -1112,7 +1112,7 @@ contract EntropyTest is Test, EntropyTestUtils, EntropyEvents, EntropyEventsV2 {
11121112 0x08c379a0 ,
11131113 "Callback failed "
11141114 );
1115- vm.expectEmit (false , false , false , true , address (random));
1115+ vm.expectEmit (true , true , true , true , address (random));
11161116 emit CallbackFailed (
11171117 provider1,
11181118 address (consumer),
@@ -1181,7 +1181,7 @@ contract EntropyTest is Test, EntropyTestUtils, EntropyEvents, EntropyEventsV2 {
11811181
11821182 // If the callback starts succeeding, we can invoke it and it emits the usual RevealedWithCallback event.
11831183 consumer.setReverts (false );
1184- vm.expectEmit (false , false , false , true , address (random));
1184+ vm.expectEmit (true , true , true , true , address (random));
11851185 emit RevealedWithCallback (
11861186 EntropyStructConverter.toV1Request (reqAfterFailure),
11871187 userRandomNumber,
@@ -1258,7 +1258,7 @@ contract EntropyTest is Test, EntropyTestUtils, EntropyEvents, EntropyEventsV2 {
12581258
12591259 // If called with enough gas, the transaction should succeed, but the callback should fail because
12601260 // it uses too much gas.
1261- vm.expectEmit (false , false , false , true , address (random));
1261+ vm.expectEmit (true , true , true , true , address (random));
12621262 emit CallbackFailed (
12631263 provider1,
12641264 address (consumer),
@@ -1327,7 +1327,7 @@ contract EntropyTest is Test, EntropyTestUtils, EntropyEvents, EntropyEventsV2 {
13271327 );
13281328
13291329 // Calling without a gas limit should succeed
1330- vm.expectEmit (false , false , false , true , address (random));
1330+ vm.expectEmit (true , true , true , true , address (random));
13311331 emit RevealedWithCallback (
13321332 EntropyStructConverter.toV1Request (reqAfterFailure),
13331333 userRandomNumber,
@@ -1593,9 +1593,9 @@ contract EntropyTest is Test, EntropyTestUtils, EntropyEvents, EntropyEventsV2 {
15931593 uint32 newGasLimit = 100000 ;
15941594
15951595 vm.prank (provider1);
1596- vm.expectEmit (false , false , false , true , address (random));
1596+ vm.expectEmit (true , true , true , true , address (random));
15971597 emit ProviderDefaultGasLimitUpdated (provider1, 0 , newGasLimit);
1598- vm.expectEmit (false , false , false , true , address (random));
1598+ vm.expectEmit (true , true , true , true , address (random));
15991599 emit EntropyEventsV2.ProviderDefaultGasLimitUpdated (
16001600 provider1,
16011601 0 ,
0 commit comments