-
Notifications
You must be signed in to change notification settings - Fork 134
dkg: add zipped flag #3903
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dkg: add zipped flag #3903
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3903 +/- ##
========================================
Coverage 55.12% 55.12%
========================================
Files 225 225
Lines 36696 36832 +136
========================================
+ Hits 20229 20304 +75
- Misses 14344 14390 +46
- Partials 2123 2138 +15 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
pinebit
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make sure this is documented in the public docs.
| bindEth1Flag(cmd.Flags(), &config.ExecutionEngineAddr) | ||
|
|
||
| cmd.Flags().DurationVar(&config.Timeout, "timeout", 1*time.Minute, "Timeout for the DKG process, should be increased if DKG times out.") | ||
| cmd.Flags().BoolVar(&config.Zipped, "zipped", false, "Create a tar archive compressed with gzip of the target directory after creation.") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider adding the same flag to add-validators. It has the same dkg semantic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will do in a separate PR
|
Add `zipped` flag to `charon dkg` command to create a gzip tarball file of the output files of DKG. It will compress/archive the contents of `dataDir` into a file named `dkg.tar.gz` and delete the original files. category: feature ticket: none



Add
zippedflag tocharon dkgcommand to create a gzip tarball file of the output files of DKG.It will compress/archive the contents of
dataDirinto a file nameddkg.tar.gzand delete the original files.category: feature
ticket: none