You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/deployment-guide.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -142,21 +142,21 @@ Rebuild all seed nodes any time the list of registered seed nodes changes.
142
142
143
143
1.[Build the Haveno repository](#fork-and-build-haveno).
144
144
2. Generate public/private keypairs for developers: `./gradlew generateKeypairs`
145
-
3. Add the developer public keys in the constructor of FilterManager.java.
145
+
3. Add the public key to `getPubKeyList()` in [FilterManager.java](https://github.com/haveno-dex/haveno/blob/2ff149b1ebcfd1a4c40d77d05d4ee9981353a8a6/core/src/main/java/haveno/core/filter/FilterManager.java#L135).
146
146
4. Update all seed nodes, arbitrators, and user applications for the change to take effect.
147
147
148
148
### Register keypair(s) with alert privileges
149
149
150
150
1.[Build the Haveno repository](#fork-and-build-haveno).
151
151
2. Generate public/private keypairs for alerts: `./gradlew generateKeypairs`
152
-
2. Add the public keys in the constructor of AlertManager.java.
152
+
3. Add the public key to `getPubKeyList()` in [AlertManager.java](https://github.com/haveno-dex/haveno/blob/2ff149b1ebcfd1a4c40d77d05d4ee9981353a8a6/core/src/main/java/haveno/core/alert/AlertManager.java#L112).
153
153
4. Update all seed nodes, arbitrators, and user applications for the change to take effect.
154
154
155
155
### Register keypair(s) with private notification privileges
156
156
157
157
1.[Build the Haveno repository](#fork-and-build-haveno).
158
158
2. Generate public/private keypairs for private notifications: `./gradlew generateKeypairs`
159
-
2. Add the public keys in the constructor of PrivateNotificationManager.java.
159
+
3. Add the public key to `getPubKeyList()` in [PrivateNotificationManager.java](https://github.com/haveno-dex/haveno/blob/2ff149b1ebcfd1a4c40d77d05d4ee9981353a8a6/core/src/main/java/haveno/core/alert/PrivateNotificationManager.java#L111).
160
160
4. Update all seed nodes, arbitrators, and user applications for the change to take effect.
161
161
162
162
## Add arbitrators
@@ -165,7 +165,7 @@ For each arbitrator:
165
165
166
166
1.[Build the Haveno repository](#fork-and-build-haveno).
167
167
2. Generate a public/private keypair for the arbitrator: `./gradlew generateKeypairs`
168
-
3. Add the public key to `getPubKeyList()` in [ArbitratorManager.java](https://github.com/haveno-dex/haveno/blob/3cdd88b56915c7f8afd4f1a39e6c1197c2665d63/core/src/main/java/haveno/core/support/dispute/arbitration/arbitrator/ArbitratorManager.java#L62).
168
+
3. Add the public key to `getPubKeyList()` in [ArbitratorManager.java](https://github.com/haveno-dex/haveno/blob/2ff149b1ebcfd1a4c40d77d05d4ee9981353a8a6/core/src/main/java/haveno/core/support/dispute/arbitration/arbitrator/ArbitratorManager.java#L81).
169
169
4. Update all seed nodes, arbitrators, and user applications for the change to take effect.
170
170
5.[Start a local Monero node](#start-a-local-monero-node).
171
171
6. Start the Haveno desktop application using the application launcher or e.g. `make arbitrator-desktop-mainnet`
0 commit comments