You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling functions from a constructor, what works and what does not work is not consistent.
constructor -> public √
constructor -> public -> external public √
constructor -> private: fails with failing to find the contract deployed.
constructor -> external private: Fails with constructor_vk_hash doesn't match private_call_vk_hash issue
constructor -> private -> external private: fails with failing to find the contract deployed.
It seems like it is generally not supported to do private function calls from the constructor. This is currently making the flow of the slow update tree with access control quite funky since I cannot set any initial roles.
The text was updated successfully, but these errors were encountered:
When calling functions from a constructor, what works and what does not work is not consistent.
constructor_vk_hash doesn't match private_call_vk_hash
issueIt seems like it is generally not supported to do private function calls from the constructor. This is currently making the flow of the slow update tree with access control quite funky since I cannot set any initial roles.
The text was updated successfully, but these errors were encountered: