#7614 implements dynamic storage based StorageVec<V>. The implementation, found in storage_vec.sw, would ideally use an associated const initialized to:
const STORES_STORAGE_TYPE: bool = __size_of::<V>() == 0;
That line is currently commented out, because it causes compiler to panic:
thread 'main' (35636) panicked at sway-core/src/semantic_analysis/type_check_analysis.rs:64:44:
called `Option::unwrap()` on a `None` value
We need to investigate why is the node_stack empty in add_edge_from_current. For details see #7619 (comment).
#7614 implements dynamic storage based
StorageVec<V>. The implementation, found instorage_vec.sw, would ideally use an associated const initialized to:That line is currently commented out, because it causes compiler to panic:
We need to investigate why is the
node_stackempty inadd_edge_from_current. For details see #7619 (comment).