-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat(axelar-std-derive): add status support to contractstorage macro #234
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #234 +/- ##
==========================================
+ Coverage 97.09% 97.15% +0.05%
==========================================
Files 69 69
Lines 3923 4000 +77
==========================================
+ Hits 3809 3886 +77
Misses 114 114 ☔ View full report in Codecov by Sentry. |
packages/stellar-axelar-std-derive/src/testdata/storage_schema_generation_succeeds.golden
Outdated
Show resolved
Hide resolved
packages/stellar-axelar-std-derive/src/testdata/storage_schema_generation_succeeds.golden
Outdated
Show resolved
Hide resolved
contracts/stellar-example/src/testdata/ensure_data_key_storage_schema_is_unchanged.golden
Outdated
Show resolved
Hide resolved
packages/stellar-axelar-std-derive/src/testdata/storage_schema_generation_succeeds.golden
Show resolved
Hide resolved
quote! { | ||
#[doc = " Value Type Getter"] | ||
pub fn #getter_name(#param_list) -> Option<#value_type> { | ||
let key = #key; |
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.
use #key directly?
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.
See this response above
AXE-7272