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/internals/tools/certify.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@
4
4
Certify tool is responsible for setting the nodes certification state.
5
5
6
6
## Code Flow
7
-
1- The command fires the `run` function with the passed options (flags)
8
-
2- It then queries the postgres database using graphql with `certification == Diy` and `secure == true` to get all the nodes on the chain that needs manual certification
9
-
3- Sets the node certification state to true on the chain
7
+
1. The command fires the `run` function with the passed options (flags)
8
+
2. It then queries the postgres database using graphql with `certification == Diy` and `secure == true` to get all the nodes on the chain that needs manual certification
9
+
3. Sets the node certification state to true on the chain
@@ -25,11 +25,11 @@ Each network directory in the destination is represented as a symlink that point
25
25
returnnil
26
26
```
27
27
28
-
2-`UpdateWithInterval` updates zos version for each network through `updateZosVersion` private method, which fetches the latest zos version from the chain and update the symbolic link to point to the correct version file
28
+
2.`UpdateWithInterval` updates zos version for each network through `updateZosVersion` private method, which fetches the latest zos version from the chain and update the symbolic link to point to the correct version file
29
29
30
-
3-`updateZosVersion` calculates relative path between src, dst to pass the correct link to `updateLink` private method
30
+
3.`updateZosVersion` calculates relative path between src, dst to pass the correct link to `updateLink` private method
31
31
32
-
3-`updateLink` ensures that the symlink at **latest** points to the correct **current** version
32
+
4.`updateLink` ensures that the symlink at **latest** points to the correct **current** version
0 commit comments