There's a section that says "Substrate does not natively support a list type since it may encourage dangerous habits.". Then in the auctions code a Vec is used, which is a kind of list and there is/was also a StorageList in substrate. I think it could be useful to expand on that section and maybe add a link to some material that explains better what exactly is dangerous and why and what can be done to avoid it.
There's a section that says "Substrate does not natively support a list type since it may encourage dangerous habits.". Then in the auctions code a
Vec
is used, which is a kind of list and there is/was also aStorageList
in substrate. I think it could be useful to expand on that section and maybe add a link to some material that explains better what exactly is dangerous and why and what can be done to avoid it.