-
Notifications
You must be signed in to change notification settings - Fork 812
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
Remove pallet::getter
usage from pallet-nft-fractionalization
#7124
base: master
Are you sure you want to change the base?
Conversation
@@ -159,7 +159,6 @@ pub mod pallet { | |||
|
|||
/// Keeps track of the corresponding NFT ID, asset ID and amount minted. | |||
#[pallet::storage] | |||
#[pallet::getter(fn nft_to_asset)] |
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.
Where is the explicit implementation of 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.
It is not required since the storage item is public
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.
can we make a deprecate function with a deprecate message that link to the storage get call?
Description
Part of #3326
As per title,
pallet::getter
usage has been removed frompallet-nft-fractionalization
.