Delete leftover

This commit is contained in:
Hsiao-Wei Wang
2023-10-17 18:30:39 +08:00
parent 63aa303c5a
commit a361aff5cf
2 changed files with 0 additions and 52 deletions

View File

@@ -1,29 +0,0 @@
import os
from pathlib import Path
from eth2spec.utils.kzg import (
dump_kzg_roots_of_unity,
)
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser()
parser.add_argument(
"--g1-length",
dest="g1_length",
type=int,
required=True,
help='the length of G1 trusted setup',
)
parser.add_argument(
"-o",
"--output-dir",
dest="output_dir",
required=True,
help='the output directory',
)
args = parser.parse_args()
dump_kzg_roots_of_unity(args.g1_length, args.output_dir)