This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.11; | |
contract LinkedList { | |
event AddEntry(bytes32 head,uint number,bytes32 name,bytes32 next); | |
uint public length = 0;//also used as nonce | |
struct Object{ | |
bytes32 next; |
OlderNewer