mirror of
https://github.com/logos-storage/rln-fast.git
synced 2026-06-10 21:49:27 +00:00
16 lines
289 B
Bash
16 lines
289 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
MY_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||
|
|
|
||
|
|
source ${MY_DIR}/params.sh
|
||
|
|
|
||
|
|
CLI_ARGS="--merkle_depth=${MERKLE_DEPTH} \
|
||
|
|
--limit_bits=${LIMIT_BITS} \
|
||
|
|
--seed=$SEED"
|
||
|
|
|
||
|
|
if [[ "$1" == "--export" ]]
|
||
|
|
then
|
||
|
|
echo "exporting CLI_ARGS"
|
||
|
|
export CLI_ARGS
|
||
|
|
fi
|