mirror of
https://github.com/alexgo-io/ord-brc20.git
synced 2026-01-12 14:44:18 +08:00
16 lines
275 B
Bash
Executable File
16 lines
275 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
|
|
rm -rf tmp/benchmark
|
|
mkdir -p tmp/benchmark
|
|
|
|
INDEX_SNAPSHOT=$1
|
|
HEIGHT_LIMIT=$2
|
|
|
|
cp $INDEX_SNAPSHOT tmp/benchmark/index.redb
|
|
|
|
cargo build --release
|
|
|
|
time ./target/release/ord --data-dir tmp/benchmark --height-limit $HEIGHT_LIMIT index
|