-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Revert + add unit test folders #1720
Conversation
WalkthroughThe changes encompass various aspects of the codebase, including adjustments to build workflows, modifications to TypeScript and Go files, and updates to configuration and utility files. These changes aim to refine build processes, improve gas usage efficiency, and enhance code readability and maintainability. Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on X ? TipsChat with CodeRabbit Bot (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 0
Configuration used: CodeRabbit UI
Files selected for processing (1)
- .github/workflows/build-pr.yml (1 hunks)
Files skipped from review due to trivial changes (1)
- .github/workflows/build-pr.yml
@@ -92,7 +92,7 @@ func (cd *contractDeployer) run() (string, error) { | |||
deployContractTx := types.LegacyTx{ | |||
Nonce: cd.wallet.GetNonceAndIncrement(), | |||
GasPrice: big.NewInt(1), | |||
Gas: uint64(2_000_000), | |||
Gas: uint64(2_900_000), // todo @pedro review this |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a TODO comment regarding the Gas
value. Ensure that this is tracked in the project's issue tracking system and addressed before the code is deployed to production.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 0
Configuration used: CodeRabbit UI
Files selected for processing (1)
- integration/constants.go (2 hunks)
Additional comments: 3
integration/constants.go (3)
6-16: Verify that the new port numbers do not conflict with other services on the network or within the application's ecosystem.
27-29: Ensure that the new port offsets align with the updated port numbers and check for potential conflicts.
3-19: > Note: This review was outside the patches, so it was mapped to the patch with the greatest overlap. Original lines [6-29]
Check the entire codebase for references to the old port numbers to ensure they are updated to the new values.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 0
Configuration used: CodeRabbit UI
Files selected for processing (3)
- go/config/enclave_cli_flags.go (1 hunks)
- go/enclave/crosschain/message_bus_manager.go (2 hunks)
- integration/common/constants.go (1 hunks)
Files skipped from review as they are similar to previous changes (3)
- go/config/enclave_cli_flags.go
- go/enclave/crosschain/message_bus_manager.go
- integration/common/constants.go
Closed in pref of #1721 |
Why this change is needed
Please provide a description and a link to the underlying ticket
What changes were made as part of this PR
Please provide a high level list of the changes made
PR checks pre-merging
Please indicate below by ticking the checkbox that you have read and performed the required
PR checks