mirror of
https://github.com/logos-storage/logos-storage-proofs-circuits.git
synced 2026-01-02 13:33:07 +00:00
23 lines
428 B
Bash
Executable File
23 lines
428 B
Bash
Executable File
#!/bin/bash
|
|
|
|
MY_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
source ${MY_DIR}/params.sh
|
|
|
|
CLI_ARGS="--depth=$MAXDEPTH \
|
|
--maxslots=$MAXSLOTS \
|
|
--cellsize=$CELLSIZE \
|
|
--blocksize=$BLOCKSIZE \
|
|
--nsamples=$NSAMPLES \
|
|
--entropy=$ENTROPY \
|
|
--seed=$SEED \
|
|
--nslots=$NSLOTS \
|
|
--ncells=$NCELLS \
|
|
--index=$SLOTINDEX"
|
|
|
|
if [[ "$1" == "--export" ]]
|
|
then
|
|
echo "exporting CLI_ARGS"
|
|
export CLI_ARGS
|
|
fi
|