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

Ctrl+Click on struct name doesn't work in some cases #399

Open
dvpublic opened this issue Jul 3, 2023 · 0 comments
Open

Ctrl+Click on struct name doesn't work in some cases #399

dvpublic opened this issue Jul 3, 2023 · 0 comments

Comments

@dvpublic
Copy link

dvpublic commented Jul 3, 2023

There are examples of both cases:

  function f2(uint, uint, 
    IBVault.ExitPoolRequest memory   // Ctrl+click on ExitPoolRequest  works fine
  ) internal {}

  function f3(uint value, uint amount) internal {
    f2(
      0,
      1,
      IBVault.ExitPoolRequest({     (!) Ctrl+click on ExitPoolRequest  doesn't work
        assets: new IAsset[](0),
        minAmountsOut: new uint[](1),
        userData: abi.encode(
          value,
          amount
        ),
        toInternalBalance: false
      })
    );
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant