We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Right now we have three ways of getting the mint info class instance through CashuWallet:
mintInfo
getMintInfo
lazyGetMintInfo
I believe only the last method is the right way of doing things, and we should remove the other two in v3. We can add an option to force an update.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now we have three ways of getting the mint info class instance through CashuWallet:
mintInfo
(only retrieves the value, throws if unset)getMintInfo
(always updated the info from the mint, returns the class instance, throws if mint class throws)lazyGetMintInfo
(only get the info from the mint if not present, otherwise returns cached value)I believe only the last method is the right way of doing things, and we should remove the other two in v3. We can add an option to force an update.
The text was updated successfully, but these errors were encountered: