Thanks a lot for the feedback!
> # someBytes: private(bytes32) # error: “Base type with units can only be num, decimal”
You should have just done someBytes: bytes32 . Perhaps we should add an explicit error message that redirects programmers to this if they try to wrap in private ?
> ## Another note about mappings: ## Contrary to the stated goals, this syntax feels like it’s _very much_ ## optimized for writing over reading.
We have considered changing the mapping syntax and I agree it’s ugly as it is; I’d be happy with doing something like mapping(x => y) .
> ## Ultimately, I just ended up using 2 more lists to and kept all the data about a user in the same index across 3 lists: user_times_array: timestamp[10]; user_bool_array: bool[10]
Why?? Why not just do: users = {joinedTime: timestamp, isActive: bool}[10] ?
Source and More information: Thanks a lot for the feedback!
Author: Vitalik Buterin
Leave a Reply