Skip to content

Commit

Permalink
fix: get_wires for ultra (#4605)
Browse files Browse the repository at this point in the history
This was wrong, but masked by the use of direct indices

Thanks @ledwards2225

Co-authored-by: ludamad <[email protected]>
  • Loading branch information
ludamad and ludamad0 authored Feb 14, 2024
1 parent 472c54a commit 512110e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion barretenberg/cpp/src/barretenberg/flavor/ultra.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class UltraFlavor {
z_perm, // column 5
z_lookup) // column 6

RefVector<DataType> get_wires() { return { w_l, w_r, w_o, w_4, sorted_accum, z_perm, z_lookup }; };
RefVector<DataType> get_wires() { return { w_l, w_r, w_o, w_4 }; };
};

/**
Expand Down

0 comments on commit 512110e

Please sign in to comment.