// Allows a future piece of chaincode to use the same state
func (t *SimpleChaincode) getUUID(stub *shim.ChaincodeStub, args []string) ([]byte, error) {
	return []byte(stub.GetUUID()), nil
}