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/guides/node-operators/validators/governance-tx.md
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,11 +91,25 @@ script {
91
91
```
92
92
93
93
## Compile
94
+
Proposers of the admin transaction must compile. Voters should be encouraged to also compile the transaction to confirm the build artifacts.
94
95
95
-
To compile we simply use the same command we originally generated the template with, and point to the `Script Dir` where your modified template is found.
96
+
If for example your script is at `proposals/up-00016/1-exit-gov-mode`
97
+
98
+
1. IMPORTANT: modify the Move.toml at `proposals/up-00016/1-exit-gov-mode/Move.toml`, to include the full path to the OL libra-framework source code.
99
+
100
+
```
101
+
# in <script-dir>/Move.toml
102
+
103
+
[dependencies.LibraFramework]
104
+
# DEVS: this must be the fully qualified path to the Libra Framework
105
+
local = '<PATH/TO/YOUR/libra-framework/framework/libra-framework'
0 commit comments