result
with 0
and the code compiles...
If I am creating a name registry contract (register, deregister name/address pair) and have the following mappings:
mapping (bytes32 => address) public addresses;
mapping (address => bytes32) public names;
How would I go about iterating over these mappings? My goal is to have a front-end that simply displays a table of names & associated addresses.