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
It seems not possible to upgrade a contract to 1.5.0 when the current version already has CES events enabled (and you want to keep it enabled).
1.5.0
Possibly, the problem is that the migrate() method tries to reinitialize CES keys and that leads to an error.
migrate()
cep-78-enhanced-nft/contract/src/main.rs
Line 2016 in 9f7aeac
I guess events_mode should be an optional runtime argument when migrating the contract. And keep the current mode if argument is omitted.
events_mode
The text was updated successfully, but these errors were encountered:
Fix casper-ecosystem#261 Failure on migration when EventsMode::CES to…
53781b5
… EventsMode::CES
cc9e1fa
ab6e697
gRoussac
Successfully merging a pull request may close this issue.
It seems not possible to upgrade a contract to
1.5.0
when the current version already has CES events enabled (and you want to keep it enabled).Possibly, the problem is that the
migrate()
method tries to reinitialize CES keys and that leads to an error.cep-78-enhanced-nft/contract/src/main.rs
Line 2016 in 9f7aeac
I guess
events_mode
should be an optional runtime argument when migrating the contract. And keep the current mode if argument is omitted.The text was updated successfully, but these errors were encountered: