-
Notifications
You must be signed in to change notification settings - Fork 13
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
Feature: Unlimited supply #50
Conversation
@ilionic PTAL. |
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.
LGTM
@Szegoo please start writing full description when you are opening PR. Plus you need to cover each and every new function with the test |
Sorry for that.
I did write tests, did you mean I should write integration tests? |
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.
Please update all integration tests under ./tests since this PR will break all of them.
Let me know if you need help
Please update PR description |
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.
LGTM
Adds a new feature that allows unlimited supply inside a collection.
This PR changes the storage for the
minting
crate by changing the type ofmax_supply
fromu64
toOption<u64>
.To signal that the
max_supply
is not limited, it needs to be set toNone
.Closes: #31