-
Notifications
You must be signed in to change notification settings - Fork 594
Open
Labels
T-bugType: Bug. Something is broken.Type: Bug. Something is broken.from-communityThis originated from the community :)This originated from the community :)
Description
What are you trying to do?
impl<Context> AccountActions<Context> {
pub fn init(context: Context, is_valid_impl: fn(&mut PrivateContext, Field) -> bool) -> Self {
AccountActions { context, is_valid_impl }
}
}Code Reference
impl<Context> AccountActions<Context> {
pub fn init(context: Context, is_valid_impl: fn(&mut PrivateContext, Field) -> bool) -> Self {
AccountActions { context, is_valid_impl }
}
}should be
impl<Context> AccountActions<Context> {
pub fn init(context: Context, is_valid_impl: fn(Context, Field) -> bool) -> Self {
AccountActions { context, is_valid_impl }
}
}Aztec Version
v3.0.0-devnet.6-patch.1
OS
No response
Browser (if relevant)
No response
Node Version
No response
Additional Context
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
T-bugType: Bug. Something is broken.Type: Bug. Something is broken.from-communityThis originated from the community :)This originated from the community :)