Skip to content

Commit

Permalink
fix: remove comments from CartesiDAppFactory.t.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
guidanoli committed Dec 11, 2023
1 parent af357ed commit 0605d9e
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions onchain/rollups/test/foundry/dapp/CartesiDAppFactory.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,8 @@ contract CartesiDAppFactoryTest is TestBase {
) public {
vm.assume(_dappOwner != address(0));

// Start the recorder
vm.recordLogs();

// perform call and emit event
// the first event is `OwnershipTransferred` emitted by Ownable constructor
// the second event is `OwnershipTransferred` emitted by CartesiDApp constructor
// the third event is `ApplicationCreated` emitted by `newApplication` function
// we focus on the third event
CartesiDApp dapp = factory.newApplication(
consensus,
_inputBox,
Expand All @@ -157,14 +151,8 @@ contract CartesiDAppFactoryTest is TestBase {
) public {
vm.assume(_dappOwner != address(0));

// Start the recorder
vm.recordLogs();

// perform call and emit event
// the first event is `OwnershipTransferred` emitted by Ownable constructor
// the second event is `OwnershipTransferred` emitted by CartesiDApp constructor
// the third event is `ApplicationCreated` emitted by `newApplication` function
// we focus on the third event
CartesiDApp dapp = factory.newApplication(
consensus,
_inputBox,
Expand Down

0 comments on commit 0605d9e

Please sign in to comment.