Skip to content
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

test: Solana e2e deposit and call; deposit and revert #2726

Merged
merged 9 commits into from
Aug 19, 2024

Conversation

ws4charlie
Copy link
Contributor

@ws4charlie ws4charlie commented Aug 15, 2024

Description

Done:

  • Solana E2E deposit and call
  • Solana E2E deposit and revert
  • Allow running E2E Solana tests on live networks thru zetae2e CLI

Closes: #2659
Closes: #2507
Closes: #2508

Live tests result in localnet:

  • solana_deposit
    image
  • solana_withdraw
    image
  • solana_deposit_and_call
    image
  • solana_deposit_and_call_refund
    image

How Has This Been Tested?

  • Tested CCTX in localnet
  • Tested in development environment
  • Go unit tests
  • Go integration tests
  • Tested via GitHub Actions

Summary by CodeRabbit

  • New Features

    • Introduced end-to-end tests for deposit, call, and refund functionalities on Solana contracts, enhancing testing coverage.
    • Added a utility function for validating smart contract interactions.
  • Bug Fixes

    • Updated authorization validation during genesis state, improving robustness.
  • Documentation

    • Updated changelog with new sections for tests and fixes, reflecting recent changes.
  • Style

    • Streamlined error handling in tests and improved logging for clarity.
  • Chores

    • Enhanced transaction broadcasting with a timeout mechanism to prevent indefinite waiting.

Copy link
Contributor

coderabbitai bot commented Aug 15, 2024

Important

Review skipped

Auto incremental reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

Walkthrough

The recent changes enhance the testing framework for Solana interactions, introducing new end-to-end tests for deposit, call, and refund scenarios. The updates improve the robustness of the testing coverage by refining the deposit processing logic, adding balance checks, and enhancing error handling mechanisms. Overall, these modifications aim to ensure the reliability and accuracy of cross-chain operations within the project.

Changes

Files Change Summary
changelog.md Added section for Tests; updated Fixes section for authorization validation.
cmd/zetae2e/local/local.go Added e2e tests for deposit and call scenarios in Solana.
e2e/e2etests/e2etests.go Introduced new constants for tests; refined default values for deposit and withdrawal.
e2e/e2etests/test_eth_deposit_call.go Simplified Ethereum deposit call error handling; centralized logic through utility function.
e2e/e2etests/test_solana_deposit.go Added balance checks before and after deposit; modified deposit instruction parameters.
e2e/e2etests/test_solana_deposit_call.go New e2e test for depositing into Solana contract; verifies expected outcomes.
e2e/e2etests/test_solana_deposit_refund.go New e2e test for deposit and call refund mechanism on Solana.
e2e/e2etests/test_solana_withdraw.go Updated logging and balance check methods for withdrawal operations.
e2e/runner/solana.go Modified deposit instruction method to include additional data parameter; added timeout for transaction broadcasting.
e2e/utils/contracts.go Introduced utility function for validating contract interactions.
x/fungible/keeper/evm_test.go Enhanced error handling in EVM tests by using dynamic error messages.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant SolanaContract
    participant E2ERunner

    User->>E2ERunner: Initiate deposit
    E2ERunner->>SolanaContract: Create deposit instruction
    E2ERunner->>SolanaContract: Broadcast transaction
    SolanaContract->>E2ERunner: Confirm transaction
    E2ERunner->>User: Return transaction status
Loading

Assessment against linked issues

Objective Addressed Explanation
Add depositAndCall E2E test for Solana (#2659)
Solana DepositAndRevert E2E test (#2507)

Possibly related issues


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 your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

!!!WARNING!!!
nosec detected in the following files: e2e/e2etests/test_solana_deposit_call.go, e2e/e2etests/test_solana_deposit_refund.go

Be very careful about using #nosec in code. It can be a quick way to suppress security warnings and move forward with development, it should be employed with caution. Suppressing warnings with #nosec can hide potentially serious vulnerabilities. Only use #nosec when you're absolutely certain that the security issue is either a false positive or has been mitigated in another way.

Only suppress a single rule (or a specific set of rules) within a section of code, while continuing to scan for other problems. To do this, you can list the rule(s) to be suppressed within the #nosec annotation, e.g: /* #nosec G401 */ or //#nosec G201 G202 G203
Broad #nosec annotations should be avoided, as they can hide other vulnerabilities. The CI will block you from merging this PR until you remove #nosec annotations that do not target specific rules.

Pay extra attention to the way #nosec is being used in the files listed above.

@github-actions github-actions bot added the nosec label Aug 15, 2024
@ws4charlie ws4charlie added chain:solana E2E E2E tests related labels Aug 15, 2024
Copy link

codecov bot commented Aug 15, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 66.90%. Comparing base (3d1698d) to head (6657ce1).
Report is 1 commits behind head on develop.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff            @@
##           develop    #2726   +/-   ##
========================================
  Coverage    66.90%   66.90%           
========================================
  Files          364      364           
  Lines        20458    20458           
========================================
  Hits         13688    13688           
  Misses        6143     6143           
  Partials       627      627           

@ws4charlie ws4charlie changed the title test: Solana e2e deposit and call; deposit and revert; live network test: Solana e2e deposit and call; deposit and revert Aug 16, 2024
Copy link

gitguardian bot commented Aug 16, 2024

⚠️ GitGuardian has uncovered 3 secrets following the scan of your pull request.

Please consider investigating the findings and remediating the incidents. Failure to do so may lead to compromising the associated services or software components.

🔎 Detected hardcoded secrets in your pull request
GitGuardian id GitGuardian status Secret Commit Filename
13340122 Triggered Generic High Entropy Secret 96351b4 zetaclient/chains/solana/signer/signer_test.go View secret
13340122 Triggered Generic High Entropy Secret 96351b4 zetaclient/chains/solana/signer/signer_test.go View secret
13392123 Triggered Generic High Entropy Secret 96351b4 zetaclient/chains/solana/signer/signer_test.go View secret
🛠 Guidelines to remediate hardcoded secrets
  1. Understand the implications of revoking this secret by investigating where it is used in your code.
  2. Replace and store your secret safely. Learn here the best practices.
  3. Revoke and rotate this secret.
  4. If possible, rewrite git history. Rewriting git history is not a trivial act. You might completely break other contributing developers' workflow and you risk accidentally deleting legitimate data.

To avoid such incidents in the future consider


🦉 GitGuardian detects secrets in your source code to help developers and security teams secure the modern development process. You are seeing this because you or someone else with access to this repository has authorized GitGuardian to scan your pull request.

@ws4charlie ws4charlie marked this pull request as ready for review August 16, 2024 05:16
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

Outside diff range, codebase verification and nitpick comments (27)
e2e/utils/contracts.go (1)

17-32: Ensure comprehensive error handling and logging.

The function MustHaveCalledExampleContract correctly checks the contract call result. However, consider adding logging for successful operations to improve traceability. Additionally, ensure that the error message is informative enough for debugging.

+  r.Logger.Info("Successfully called ExampleContract with amount: %s", amount.String())
e2e/e2etests/test_solana_withdraw.go (2)

16-19: Clarify logging messages for better context.

The logging message indicates the balance before withdrawal. Ensure that the message provides clear context, such as specifying the currency or token type.

-  r.Logger.Info("runner balance of SOL before withdraw: %d", balanceBefore)
+  r.Logger.Info("Runner's ERC20 SOL balance before withdrawal: %d", balanceBefore)

39-42: Enhance logging message for post-withdrawal balance.

The logging message should clearly indicate that it refers to the balance after the withdrawal operation.

-  r.Logger.Info("runner balance of SOL after withdraw: %d", balanceAfter)
+  r.Logger.Info("Runner's ERC20 SOL balance after withdrawal: %d", balanceAfter)
e2e/e2etests/test_solana_deposit.go (2)

18-21: Improve logging clarity for pre-deposit balance.

The logging message should specify the currency or token type for clarity.

-  r.Logger.Info("runner balance of SOL before deposit: %d", balanceBefore)
+  r.Logger.Info("Runner's ERC20 SOL balance before deposit: %d", balanceBefore)

45-48: Clarify logging message for post-deposit balance.

The logging message should clearly indicate that it refers to the balance after the deposit operation.

-  r.Logger.Info("runner balance of SOL after deposit: %d", balanceAfter)
+  r.Logger.Info("Runner's ERC20 SOL balance after deposit: %d", balanceAfter)
e2e/e2etests/test_solana_deposit_call.go (7)

15-16: Clarify function purpose in the comment.

The function comment should clearly describe the purpose and scope of the test, including any specific conditions or scenarios it covers. Consider expanding the comment to include this information.

-// TestSolanaDepositAndCall tests deposit of lamports calling a example contract
+// TestSolanaDepositAndCall verifies the deposit of lamports and the execution of a call to an example contract on Solana.

17-17: Validate argument length with a descriptive error message.

The error message could be more descriptive to aid debugging if the argument length is incorrect.

-require.Len(r, args, 1)
+require.Len(r, args, 1, "TestSolanaDepositAndCall requires exactly one argument: the deposit amount.")

24-24: Log deployment errors for better traceability.

Enhance error handling by logging deployment errors to help with debugging.

require.NoError(r, err, "Failed to deploy example contract.")

31-31: Handle private key parsing errors explicitly.

Consider logging the error when parsing the private key fails for better traceability.

require.NoError(r, err, "Failed to parse Solana private key.")

36-36: Clarify data usage in deposit instruction.

Provide a brief comment explaining the purpose of the data variable to improve code readability.

// Example data payload for the deposit instruction
data := []byte("hello lamports")

43-43: Enhance log message clarity.

The log message could be more descriptive to indicate the context of the logs.

r.Logger.Info("Deposit transaction logs: %v", out.Meta.LogMessages)

51-51: Ensure contract call verification is robust.

Consider adding a descriptive error message to the MustHaveCalledExampleContract function to clarify the failure context.

utils.MustHaveCalledExampleContract(r, contract, depositAmount, "Example contract call verification failed.")
e2e/e2etests/test_solana_deposit_refund.go (7)

15-16: Clarify function purpose in the comment.

The function comment should clearly describe the purpose and scope of the test, including any specific conditions or scenarios it covers. Consider expanding the comment to include this information.

-// TestSolanaDepositAndCallRefund tests deposit of lamports calling a example contract
+// TestSolanaDepositAndCallRefund verifies the deposit of lamports and the handling of a revert scenario with a reverter contract on Solana.

17-17: Validate argument length with a descriptive error message.

The error message could be more descriptive to aid debugging if the argument length is incorrect.

-require.Len(r, args, 1)
+require.Len(r, args, 1, "TestSolanaDepositAndCallRefund requires exactly one argument: the deposit amount.")

25-25: Log deployment errors for better traceability.

Enhance error handling by logging deployment errors to help with debugging.

require.NoError(r, err, "Failed to deploy reverter contract.")

32-32: Handle private key parsing errors explicitly.

Consider logging the error when parsing the private key fails for better traceability.

require.NoError(r, err, "Failed to parse Solana private key.")

37-37: Clarify data usage in deposit instruction.

Provide a brief comment explaining the purpose of the data variable to improve code readability.

// Example data payload for the deposit instruction
data := []byte("hello reverter")

44-44: Enhance log message clarity.

The log message could be more descriptive to indicate the context of the logs.

r.Logger.Info("Deposit transaction logs: %v", out.Meta.LogMessages)

53-53: Ensure revert status message verification is robust.

Consider adding a descriptive error message to the require.Contains function to clarify the failure context.

require.Contains(r, cctx.CctxStatus.StatusMessage, utils.ErrHashRevert, "Revert error hash not found in status message.")
e2e/e2etests/test_eth_deposit_call.go (6)

Line range hint 13-13:
Clarify function purpose in the comment.

The function comment should clearly describe the purpose and scope of the test, including any specific conditions or scenarios it covers. Consider expanding the comment to include this information.

-// TestEtherDepositAndCall tests deposit of ethers calling a example contract
+// TestEtherDepositAndCall verifies the deposit of ethers and the execution of a call to an example contract on Ethereum.

Line range hint 15-15:
Validate argument length with a descriptive error message.

The error message could be more descriptive to aid debugging if the argument length is incorrect.

-require.Len(r, args, 1)
+require.Len(r, args, 1, "TestEtherDepositAndCall requires exactly one argument: the deposit amount.")

Line range hint 17-18:
Ensure safe parsing of deposit amount.

Consider adding error handling for the SetString function to ensure robustness in case of invalid input.

value, ok := big.NewInt(0).SetString(args[0], 10)
require.True(r, ok, "Invalid amount specified for TestEtherDepositAndCall.")

Line range hint 26-26:
Log deployment errors for better traceability.

Enhance error handling by logging deployment errors to help with debugging.

require.NoError(r, err, "Failed to deploy example contract.")

59-59: Ensure contract call verification is robust.

Consider adding a descriptive error message to the MustHaveCalledExampleContract function to clarify the failure context.

utils.MustHaveCalledExampleContract(r, exampleContract, value, "Example contract call verification failed.")

93-93: Ensure revert status message verification is robust.

Consider adding a descriptive error message to the require.Contains function to clarify the failure context.

require.Contains(r, cctx.CctxStatus.StatusMessage, utils.ErrHashRevert, "Revert error hash not found in status message.")
changelog.md (2)

21-23: Clarify the test description.

The entry "add e2e tests for deposit and call, deposit and revert" is concise but could benefit from additional context or detail to clarify what these tests are verifying or why they are significant.

- * [2726](https://github.com/zeta-chain/node/pull/2726) - add e2e tests for deposit and call, deposit and revert
+ * [2726](https://github.com/zeta-chain/node/pull/2726) - add end-to-end tests for Solana's deposit and call, and deposit and revert functionalities, ensuring robust cross-chain operations.

24-24: Ensure clarity and consistency in fix descriptions.

The entry "add validation for authorization list in when validating genesis state for authorization module" could be clearer. Consider revising for grammatical correctness and clarity.

- * [2654](https://github.com/zeta-chain/node/pull/2654) - add validation for authorization list in when validating genesis state for authorization module
+ * [2654](https://github.com/zeta-chain/node/pull/2654) - add validation for the authorization list during genesis state validation for the authorization module.
Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 2093314 and 96351b4.

Files selected for processing (11)
  • changelog.md (1 hunks)
  • cmd/zetae2e/local/local.go (1 hunks)
  • e2e/e2etests/e2etests.go (2 hunks)
  • e2e/e2etests/test_eth_deposit_call.go (3 hunks)
  • e2e/e2etests/test_solana_deposit.go (4 hunks)
  • e2e/e2etests/test_solana_deposit_call.go (1 hunks)
  • e2e/e2etests/test_solana_deposit_refund.go (1 hunks)
  • e2e/e2etests/test_solana_withdraw.go (2 hunks)
  • e2e/runner/solana.go (3 hunks)
  • e2e/utils/contracts.go (1 hunks)
  • x/fungible/keeper/evm_test.go (3 hunks)
Additional context used
Path-based instructions (10)
e2e/utils/contracts.go (1)

Pattern **/*.go: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.

e2e/e2etests/test_solana_withdraw.go (1)

Pattern **/*.go: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.

e2e/e2etests/test_solana_deposit.go (1)

Pattern **/*.go: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.

e2e/e2etests/test_solana_deposit_call.go (1)

Pattern **/*.go: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.

e2e/e2etests/test_solana_deposit_refund.go (1)

Pattern **/*.go: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.

e2e/e2etests/test_eth_deposit_call.go (1)

Pattern **/*.go: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.

e2e/runner/solana.go (1)

Pattern **/*.go: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.

cmd/zetae2e/local/local.go (1)

Pattern **/*.go: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.

e2e/e2etests/e2etests.go (1)

Pattern **/*.go: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.

x/fungible/keeper/evm_test.go (1)

Pattern **/*.go: Review the Go code, point out issues relative to principles of clean code, expressiveness, and performance.

Additional comments not posted (7)
e2e/e2etests/test_solana_deposit.go (1)

32-32: Verify the impact of the modified function signature.

The CreateDepositInstruction function now includes an additional nil parameter. Ensure that this change is reflected in all relevant parts of the codebase and does not introduce unintended side effects.

e2e/runner/solana.go (2)

100-109: LGTM! Timeout mechanism is a robust addition.

The inclusion of a timeout in BroadcastTxSync enhances the robustness of transaction handling by preventing indefinite waits.


Line range hint 34-55:
LGTM! Verify the usage of the updated method.

The changes to include a data parameter in CreateDepositInstruction enhance the flexibility of memo construction.

Ensure that all calls to this method in the codebase are updated to pass the new data parameter.

Verification successful

Verification Successful: All calls to CreateDepositInstruction are updated correctly.

The implementation of the CreateDepositInstruction method has been successfully updated across the codebase to include the data parameter. The following files reflect the correct usage:

  • e2e/e2etests/test_solana_deposit_call.go
  • e2e/e2etests/test_solana_deposit_refund.go
  • e2e/e2etests/test_solana_deposit.go

All instances pass the data parameter, ensuring the method's new signature is consistently applied.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify all function calls to `CreateDepositInstruction` match the new signature.

# Test: Search for the function usage. Expect: Only occurrences of the new signature.
rg --type go -A 5 $'CreateDepositInstruction'

Length of output: 1990

cmd/zetae2e/local/local.go (1)

335-336: LGTM! New test cases are well integrated.

The addition of TestSolanaDepositAndCallName and TestSolanaDepositAndCallRefundName expands the Solana test coverage effectively.

e2e/e2etests/e2etests.go (2)

59-60: LGTM! New constants for Solana tests are well defined.

The addition of TestSolanaDepositAndCallName and TestSolanaDepositAndCallRefundName enhances the test suite.


346-371: Verify the updated default values for Solana tests.

The default values for TestSolanaDeposit and TestSolanaWithdraw have been updated. Ensure these values align with the expected test scenarios.

Verification successful

Verification of Default Values for Solana Tests

The default values for TestSolanaDeposit and TestSolanaWithdraw have been updated to "1200000" and "1000000" lamports, respectively. These values are correctly used within the test functions, aligning with the expected scenarios. No issues were found in their implementation.

  • TestSolanaDeposit uses the default value "1200000" lamports.
  • TestSolanaWithdraw uses the default value "1000000" lamports.
Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify that the updated default values for Solana tests align with the expected scenarios.

# Test: Search for the usage of `TestSolanaDeposit` and `TestSolanaWithdraw`. Expect: Correct handling of updated values.
rg --type go -A 5 $'TestSolanaDeposit|TestSolanaWithdraw'

Length of output: 5127

x/fungible/keeper/evm_test.go (1)

579-579: Ensure correct usage of dynamic error messages.

The use of utils.ErrHashRevert for dynamic error messages enhances maintainability. Ensure that utils.ErrHashRevert is correctly defined and used consistently across the codebase.

Verification successful

Dynamic error message usage is correct and consistent.

The variable utils.ErrHashRevert is defined and used consistently across the codebase, enhancing maintainability by avoiding hardcoded error messages.

  • Definition: e2e/utils/contracts.go
  • Usage: x/fungible/keeper/evm_test.go, e2e/e2etests/test_solana_deposit_refund.go, e2e/e2etests/test_eth_deposit_call.go

This confirms the correct implementation of dynamic error handling in the test.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the definition and usage of `utils.ErrHashRevert`.

# Test: Search for the definition and usage of `ErrHashRevert`. Expect: Consistent and correct usage.
rg --type go 'ErrHashRevert'

Length of output: 526

e2e/e2etests/test_solana_deposit_call.go Outdated Show resolved Hide resolved
e2e/e2etests/test_solana_deposit_refund.go Outdated Show resolved Hide resolved
@lumtis lumtis added the SOLANA_TESTS Run make start-solana-test label Aug 16, 2024
e2e/e2etests/test_solana_deposit.go Outdated Show resolved Hide resolved
e2e/e2etests/test_solana_deposit_call.go Outdated Show resolved Hide resolved
e2e/e2etests/test_solana_deposit_call.go Show resolved Hide resolved
e2e/e2etests/test_solana_deposit_call.go Outdated Show resolved Hide resolved
e2e/e2etests/test_solana_deposit_call.go Show resolved Hide resolved
e2e/e2etests/test_solana_deposit_call.go Outdated Show resolved Hide resolved
e2e/e2etests/test_solana_deposit_refund.go Outdated Show resolved Hide resolved
Copy link
Contributor

@swift1337 swift1337 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Left a minor comment

e2e/utils/contracts.go Outdated Show resolved Hide resolved
e2e/e2etests/test_solana_deposit_call.go Outdated Show resolved Hide resolved
@lumtis lumtis added this pull request to the merge queue Aug 19, 2024
@lumtis lumtis removed this pull request from the merge queue due to a manual request Aug 19, 2024
@lumtis lumtis enabled auto-merge August 19, 2024 07:44
@lumtis lumtis added this pull request to the merge queue Aug 19, 2024
Merged via the queue into develop with commit 53883f5 Aug 19, 2024
28 of 29 checks passed
@lumtis lumtis deleted the e2e-solana-depositCall-depositRevert branch August 19, 2024 08:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
breaking:cli chain:solana E2E E2E tests related nosec SOLANA_TESTS Run make start-solana-test
Projects
None yet
3 participants