Skip to content

Commit

Permalink
fix: removed plain from path in array args of contract interfaces (#6497
Browse files Browse the repository at this point in the history
)

Closes: #6222
  • Loading branch information
Thunkar committed May 17, 2024
1 parent fa9f442 commit 2b37729
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ pub fn stub_function(aztec_visibility: &str, func: &NoirFunction) -> String {
for i in 0..{0}.len() {{
args_acc = args_acc.append(hash_{0}[i].as_slice());
}}\n",
param_name, typ.typ
param_name,
typ.typ.to_string().replace("plain::", "")
)
}
_ => {
Expand Down

0 comments on commit 2b37729

Please sign in to comment.