-
Notifications
You must be signed in to change notification settings - Fork 106
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
fix: vars type can be more than string, should be object #684
base: main
Are you sure you want to change the base?
Conversation
Important Review skippedReview was skipped due to path filters ⛔ Files ignored due to path filters (1)
CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including You can disable this status message by setting the 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? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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 using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #684 +/- ##
==========================================
+ Coverage 81.61% 81.67% +0.05%
==========================================
Files 131 131
Lines 7071 7071
==========================================
+ Hits 5771 5775 +4
+ Misses 996 994 -2
+ Partials 304 302 -2 ☔ View full report in Codecov by Sentry. |
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.
Sorry, that's wrong.
The format you describe is for v1 endpoints, not v2.
Are you sure something does not remove the /v2 prefix for you?
@gfyrag are you sure? I'm using Ledger standalone, not through the Gateway, but I'm using v2.2.2 docker image. Otherwise as described on Slack it really doesn't work for me |
DOH @gfyrag only now I notice that without /v2 indeed it serves v1.. my bad. I just assumed v2 is new default. The issue with the |
Generated SDK doesn't any vars other than String type, it should be Object type.
@edwardmp yes you're right, the issue about the vars still remains. |
Map<String, String>
), it should beMap<String, Object>
type. I.e. if you have a script with monetary variable, you need a nested map to reflect the asset and amount parts.As mentioned on Slack