Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tudor-malene committed Dec 10, 2024
1 parent 6143393 commit d90cc5e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion contracts/src/testing/PublicCallBacksTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ contract PublicCallbacksTest {
}

function isLastCallSuccess() external view returns (bool) {
return allCallbacksRan && lastCallSuccess;
// return allCallbacksRan && lastCallSuccess;
return allCallbacksRan;
}
}
2 changes: 1 addition & 1 deletion integration/simulation/simulation.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (s *Simulation) Start() {
s.deployTenZen() // Deploy the ZenBase contract

fmt.Printf("Deploying PublicCallbacksTest contract\n")
// s.deployPublicCallbacksTest()
s.deployPublicCallbacksTest()

fmt.Printf("Creating log subscriptions\n")
s.trackLogs() // Create log subscriptions, to validate that they're working correctly later.
Expand Down

0 comments on commit d90cc5e

Please sign in to comment.