Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ pub fn assert_is_initialized_private(context: &mut PrivateContext) {

/// Asserts that the contract has been initialized, from a utility function's perspective.
///
/// Only checks the private initialization nullifier in the settled nullifier tree. Since both nullifiers are emitted in
/// the same transaction, the private nullifier's presence in settled state guarantees the public one is also settled.
/// Only checks the private initialization nullifier in the settled nullifier tree. Since both nullifiers are emitted
/// in the same transaction, the private nullifier's presence in settled state guarantees the public one is also settled.
pub unconstrained fn assert_is_initialized_utility(context: UtilityContext) {
let address = context.this_address();
let instance = get_contract_instance(address);
Expand Down
Loading