public RealChordRing(IPAddress bootStrapIP, Guid bootStrapChordInstanceGuid)
        {
            chordServer = (ChordServer)(TashjikServer.joinExisting(bootStrapIP, "Chord", bootStrapChordInstanceGuid));
            Guid chordInstanceGuid = chordServer.getGuid();

            incentiveStorageManager = new IncentiveStorageManager();
        }
        public RealChordRing()
        {
            chordServer = (ChordServer)(TashjikServer.createNew("Chord"));
            Guid chordInstanceGuid = chordServer.getGuid();

            incentiveStorageManager = new IncentiveStorageManager();
        }