Skip to content

Instantly share code, notes, and snippets.

View aunyks's full-sized avatar
Increasing potential

Gerald Nash aunyks

Increasing potential
View GitHub Profile
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;