@@ -56,13 +56,13 @@ const ExternalAPIVersion = "4.0.0"
56
56
const InternalAPIVersion = "3.0.0"
57
57
58
58
const legalWarning = `
59
- WARNING!
59
+ WARNING!
60
60
61
61
Clef is alpha software, and not yet publically released. This software has _not_ been audited, and there
62
62
are no guarantees about the workings of this software. It may contain severe flaws. You should not use this software
63
- unless you agree to take full responsibility for doing so, and know what you are doing.
63
+ unless you agree to take full responsibility for doing so, and know what you are doing.
64
64
65
- TLDR; THIS IS NOT PRODUCTION-READY SOFTWARE!
65
+ TLDR; THIS IS NOT PRODUCTION-READY SOFTWARE!
66
66
67
67
`
68
68
@@ -136,7 +136,7 @@ var (
136
136
configdirFlag ,
137
137
},
138
138
Description : `
139
- The init command generates a master seed which Clef can use to store credentials and data needed for
139
+ The init command generates a master seed which Clef can use to store credentials and data needed for
140
140
the rule-engine to work.` ,
141
141
}
142
142
attestCommand = cli.Command {
@@ -150,10 +150,10 @@ the rule-engine to work.`,
150
150
signerSecretFlag ,
151
151
},
152
152
Description : `
153
- The attest command stores the sha256 of the rule.js-file that you want to use for automatic processing of
154
- incoming requests.
153
+ The attest command stores the sha256 of the rule.js-file that you want to use for automatic processing of
154
+ incoming requests.
155
155
156
- Whenever you make an edit to the rule file, you need to use attestation to tell
156
+ Whenever you make an edit to the rule file, you need to use attestation to tell
157
157
Clef that the file is 'safe' to execute.` ,
158
158
}
159
159
@@ -168,7 +168,7 @@ Clef that the file is 'safe' to execute.`,
168
168
signerSecretFlag ,
169
169
},
170
170
Description : `
171
- The setpw command stores a password for a given address (keyfile). If you enter a blank passphrase, it will
171
+ The setpw command stores a password for a given address (keyfile). If you enter a blank passphrase, it will
172
172
remove any stored credential for that address (keyfile)
173
173
` ,
174
174
}
@@ -258,12 +258,12 @@ func initializeSecrets(c *cli.Context) error {
258
258
}
259
259
fmt .Printf ("A master seed has been generated into %s\n " , location )
260
260
fmt .Printf (`
261
- This is required to be able to store credentials, such as :
261
+ This is required to be able to store credentials, such as :
262
262
* Passwords for keystores (used by rule engine)
263
263
* Storage for javascript rules
264
264
* Hash of rule-file
265
265
266
- You should treat that file with utmost secrecy, and make a backup of it.
266
+ You should treat that file with utmost secrecy, and make a backup of it.
267
267
NOTE: This file does not contain your accounts. Those need to be backed up separately!
268
268
269
269
` )
0 commit comments