From 781bb11130e0b0eb026ab45d10f27000ed7899ff Mon Sep 17 00:00:00 2001
From: josh <josh@elixxir.io>
Date: Fri, 8 Apr 2022 15:35:51 -0700
Subject: [PATCH] Fix bug in permissioning config (localNetwork)

---
 localNetwork/.idea/workspace.xml              | 65 +++++++++++++++++++
 .../permissioning_template.yaml               |  2 +
 localNetwork/permissioning-actual.yaml        |  2 +
 localNetwork/permissioning.yaml               |  2 +
 4 files changed, 71 insertions(+)
 create mode 100644 localNetwork/.idea/workspace.xml

diff --git a/localNetwork/.idea/workspace.xml b/localNetwork/.idea/workspace.xml
new file mode 100644
index 0000000..c953f57
--- /dev/null
+++ b/localNetwork/.idea/workspace.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="AutoImportSettings">
+    <option name="autoReloadType" value="SELECTIVE" />
+  </component>
+  <component name="ChangeListManager">
+    <list default="true" id="2b52d193-f8a9-4183-bc02-b0b82caa98f4" name="Changes" comment="">
+      <change beforePath="$PROJECT_DIR$/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/README.md" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/ipList-1.txt" beforeDir="false" />
+      <change beforePath="$PROJECT_DIR$/ipList-1.txt-index" beforeDir="false" />
+      <change beforePath="$PROJECT_DIR$/regCodes.json" beforeDir="false" afterPath="$PROJECT_DIR$/regCodes.json" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/server-0.yaml" beforeDir="false" afterPath="$PROJECT_DIR$/server-0.yaml" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/server-1.yaml" beforeDir="false" afterPath="$PROJECT_DIR$/server-1.yaml" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/server-2.yaml" beforeDir="false" afterPath="$PROJECT_DIR$/server-2.yaml" afterDir="false" />
+    </list>
+    <option name="SHOW_DIALOG" value="false" />
+    <option name="HIGHLIGHT_CONFLICTS" value="true" />
+    <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
+    <option name="LAST_RESOLUTION" value="IGNORE" />
+  </component>
+  <component name="Git.Settings">
+    <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$/.." />
+  </component>
+  <component name="MarkdownSettingsMigration">
+    <option name="stateVersion" value="1" />
+  </component>
+  <component name="ProjectId" id="26ACFLygQupMeTOcbY1ViHsSpet" />
+  <component name="ProjectLevelVcsManager" settingsEditedManually="true" />
+  <component name="ProjectViewState">
+    <option name="hideEmptyMiddlePackages" value="true" />
+    <option name="showLibraryContents" value="true" />
+  </component>
+  <component name="PropertiesComponent">
+    <property name="RunOnceActivity.OpenProjectViewOnStart" value="true" />
+    <property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
+    <property name="last_opened_file_path" value="$PROJECT_DIR$" />
+  </component>
+  <component name="RecentsManager">
+    <key name="CopyFile.RECENT_KEYS">
+      <recent name="$PROJECT_DIR$" />
+    </key>
+  </component>
+  <component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
+  <component name="TaskManager">
+    <task active="true" id="Default" summary="Default task">
+      <changelist id="2b52d193-f8a9-4183-bc02-b0b82caa98f4" name="Changes" comment="" />
+      <created>1646856899272</created>
+      <option name="number" value="Default" />
+      <option name="presentableId" value="Default" />
+      <updated>1646856899272</updated>
+    </task>
+    <servers />
+  </component>
+  <component name="Vcs.Log.Tabs.Properties">
+    <option name="TAB_STATES">
+      <map>
+        <entry key="MAIN">
+          <value>
+            <State />
+          </value>
+        </entry>
+      </map>
+    </option>
+  </component>
+</project>
\ No newline at end of file
diff --git a/localNetwork/configFileGeneration/permissioning_template.yaml b/localNetwork/configFileGeneration/permissioning_template.yaml
index 7f55fe1..42298a9 100644
--- a/localNetwork/configFileGeneration/permissioning_template.yaml
+++ b/localNetwork/configFileGeneration/permissioning_template.yaml
@@ -95,3 +95,5 @@ RegCodesFilePath: "regCodes.json"
 # Set address space size for ephemeral IDs
 addressSpace: 32
 
+# Public address used in NDF to give to client
+registrationAddress: "0.0.0.0:11421"
diff --git a/localNetwork/permissioning-actual.yaml b/localNetwork/permissioning-actual.yaml
index a04f7f1..19acfa4 100644
--- a/localNetwork/permissioning-actual.yaml
+++ b/localNetwork/permissioning-actual.yaml
@@ -95,3 +95,5 @@ RegCodesFilePath: "regCodes.json"
 # Set address space size for ephemeral IDs
 addressSpace: 32
 
+# Public address used in NDF to give to client
+registrationAddress: "0.0.0.0:11421"
diff --git a/localNetwork/permissioning.yaml b/localNetwork/permissioning.yaml
index 5c3a331..1588ea8 100644
--- a/localNetwork/permissioning.yaml
+++ b/localNetwork/permissioning.yaml
@@ -95,3 +95,5 @@ RegCodesFilePath: "regCodes.json"
 # Set address space size for ephemeral IDs
 addressSpace: 32
 
+# Public address used in NDF to give to client
+registrationAddress: "0.0.0.0:11421"
-- 
GitLab