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
One general comment: we frequently use account.to_bytes() to convert account ID to a vector of bytes. This results in allocations and I wonder if it would be better to use something like u128 or [u8; 15] as a "native" type for account ID.
With the changes in #603 the number of allocations is reduced greatly. Would this be enough or we still want to change the native type in the node? The miden-base type has its benefits as it has additional methods that could be useful.
Originally posted by @bobbinth in #591 (comment)
The text was updated successfully, but these errors were encountered: