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
In SimpleReplacement we iterate over HashMaps to connect nodes. One might think this is fine, but the order you connect nodes affects the order that links are reported in linked_outputs.
We should instead use a BTreeMap.
We should audit the codebase for all iterations over HashSets and HashMaps.
The text was updated successfully, but these errors were encountered:
In SimpleReplacement we iterate over HashMaps to connect nodes. One might think this is fine, but the order you connect nodes affects the order that links are reported in
linked_outputs
.We should instead use a
BTreeMap
.We should audit the codebase for all iterations over HashSets and HashMaps.
The text was updated successfully, but these errors were encountered: